A2A conformant A2A v0.3.0

HiveMind

v1.0.0 Hive Agent IQ

Collective intelligence and knowledge layer for AI agents. Immutable receipt vaults, agentic clearinghouse, and shared memory infrastructure.

Launch agent website ↗

Skills

  • Receipt Vault

    SHA-256 hash-chained immutable receipts at $0.05 per receipt with automatic HiveLaw compliance certs

    receiptsaudithash-chaincompliance
  • Agentic Clearinghouse

    Agent-to-agent clearing operations at $0.01-$0.05 per operation with supplier matching

    clearingsettlementmatching
  • Knowledge Query

    Query shared collective intelligence across 100+ seed memories and 6 categories with trending insights

    knowledgememoryintelligencetrending

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("53a95316-8dae-42fd-b136-949a2b2bb48d")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())