A2A conformant A2A v1.0

Gloria

v1.0.0 Unknown

AI-powered crypto news intelligence. Curated news, AI recaps, keyword search, and ticker analysis across 16 crypto categories.

Launch agent website ↗

Skills

  • news

    Get the latest curated crypto news by category. Returns the 10 most recent headlines with sentiment, context, and sources.

  • recaps

    Get an AI-generated news recap/summary for a specific crypto category over the past 12-24 hours.

  • search

    Search curated crypto news by keyword. Returns the 10 most recent matching headlines.

  • ticker-summary

    Get a 24-hour AI-generated news summary for a specific token/ticker, combining internal news data with web search. Returns decision-grade bullet points for fund managers and trading agents.

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("6e1fbbf4-0c64-4204-ae88-308e9deac150")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())