Install
openclaw skills install claim-verifyWhen any factual claim is made — exchange rates, prices, dates, statistics — verify it against live data before using it.
openclaw skills install claim-verifyVerify factual claims against live data before using them in responses, calculations, or decisions. Returns structured verdicts with confidence scores and current truth values.
Use this skill whenever:
Do NOT use for: opinions, predictions, subjective claims, private/internal data, or questions about future events.
Identify the specific factual assertion. Be precise — "Bitcoin price is above $60,000" is better than "Bitcoin is expensive."
If @agentutil/verify-mcp is available as an MCP tool, use it directly:
verify_claim({ claim: "The USD to EUR exchange rate is 0.92" })
If no MCP tool is available, call the API:
curl -X POST https://verify.agentutil.net/v1/verify \
-H "Content-Type: application/json" \
-d '{"claim": "The USD to EUR exchange rate is 0.92"}'
Optional: add "category" for faster routing — financial, entity, geo, or factcheck.
| Verdict | Confidence | What to do |
|---|---|---|
confirmed | > 0.9 | Safe to use. Cite current_truth as the verified value. |
confirmed | 0.7-0.9 | Likely correct but note the uncertainty to the user. |
stale | any | The claim WAS true but data has changed. Use current_truth instead. Tell the user: "That was previously correct, but the current value is X." |
disputed | any | Sources disagree. Present both sides — do NOT pick one. Say: "Sources conflict on this — [source A] says X while [source B] says Y." |
false | > 0.8 | Contradicts current data. Correct it: "Actually, the current value is X." |
false | < 0.8 | Likely wrong but not certain. Flag it: "This doesn't match current data (X), but confidence is moderate." |
unknown | any | Could not verify. Say so honestly — do NOT guess. |
current_truth for the original claim valueunknown: proceed with the original value but caveat that it's unverified{
"verdict": "confirmed",
"confidence": 0.95,
"current_truth": "0.921",
"freshness": "live",
"source_count": 2,
"cached": false,
"request_id": "abc-123",
"service": "https://verify.agentutil.net"
}
For faster routing, specify a category:
financial — exchange rates, crypto prices, stock pricesentity — company info, population, founding datesgeo — timezones, geographic datafactcheck — general fact-checking via Google Fact Check APISee what others are verifying:
curl https://verify.agentutil.net/v1/trending
@agentutil/verify-mcp (npm)https://verify.agentutil.net/.well-known/agent.jsonhttps://verify.agentutil.net/.well-known/agent-service.jsonNo authentication required for free tier. Query content is not stored beyond transient cache (max 1 hour). No personal data collected. Rate limiting uses IP hashing only.