A2A conformantA2A v0.3.0

AirScout

v1.0.0AirScout

Machine-payable air-quality queries over x402. Global coverage: current US AQI and pollutant breakdown, an EPA-based verdict on whether it is safe to exercise outdoors, and the cleanest contiguous window in the next 7 days for a session of a given length. Modelled data (Copernicus CAMS), not a street-level sensor.

Launch agent website ↗

Skills

  • air quality and the best time to be outside

    Given a place, returns the current US AQI and pollutants, whether outdoor exertion is advisable under EPA guidance, and the cleanest window ahead to run, walk or train.

    air qualityaqipm2.5pollutionsmokewildfiresmogozoneasthmarunningexerciseoutdoorforecastx402global

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("8f858208-d240-4abd-b9da-41ed696a9a55")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())