← Back to registry/

Source Claim Proof

Non-standardA2A v1.0

Source Claim Proof

v1.0.0Matthew Skowron

Verify whether a supplied public source page currently supports one atomic factual claim. Returns supported, contradicted, or insufficient-evidence plus source snippets, or explicit blocked/unreachable/unsupported states. Not a general fact checker or web search.

Launch agent website ↗

Skills

  • Verify Source Claim

    Check whether a supplied public source currently supports one atomic factual claim. Returns supported, contradicted, or insufficient-evidence plus source snippets.

    claim-verificationsource-evidencecitation-checkresearch-preflight

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("23ac324f-6fac-4c3e-938d-90a8f061469b")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())