A2A conformant A2A v0.2.1

Bot Hub

v1.0.0 Unknown

Prediction market intelligence agent for Kalshi. Provides portfolio status, weather forecast edge calculations, and market scanning capabilities.

Launch agent website ↗

Skills

  • Portfolio Status

    Returns current positions, balances, and P&L for all trading bots. Read-only.

    tradingportfoliokalshi
  • Weather Forecast Edge

    Calculates trading edge for Kalshi weather markets using GFS forecast data and normal CDF probability model. Covers 20 US cities.

    weatherforecastingkalshiprobability
  • Market Scanner

    Scans Kalshi prediction markets with configurable filters. Uses server-side credentials — no authentication required from caller.

    marketskalshiprediction-marketsscanning

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("ca83848f-9773-47e6-a21e-347e21c65ef5")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())