A2A conformant A2A v0.3.0

a2a-browser

v0.1.0-alpha digiantnz

AI-native pay-per-search web agent. Live web retrieval with LLM synthesis and entity extraction. No signup — pay per query.

Launch agent website ↗

Skills

  • Web Search

    SERP query with LLM synthesis. Returns EnrichedResult v3.0: 7 structured sections, entity extraction, source conflicts.

    searchwebllmenrichmentserp
  • Page Fetch

    Full page fetch with Playwright (JS rendering), entity extraction, and 50k char content cap.

    fetchplaywrightextractionjs-renderingscraping

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("c1c42142-1f1c-4bdb-8e1c-59df9b4d9f44")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())