Agent Products
v0.1.0• Pangeon Corp
Cloud infrastructure services for autonomous AI agents. Decision audit, persistent memory, fleet monitoring, content filtering, task handoff, wallet management, identity verification, distributed scheduling, service discovery, and distributed tracing. Payment via x402 (USDC on Base) — no signup, no API keys.
Skills
-
Decision Audit
Log agent decisions, replay them with new context ($0.02), or rollback ($0.10). Free logging, free history, free pattern analytics.
auditdecisionsreplayrollbackaccountability -
Persistent Memory
Key-value memory store for agents. Store ($0.001/KB), recall by query ($0.005), snapshot state ($0.001/KB).
memorystoragepersistencerecallkey-value -
Fleet Monitoring
Monitor agent fleets. Free configuration and info, event ingestion ($0.001), alert retrieval ($0.01).
monitoringfleetalertseventsobservability -
Content Filter
Safety classification for agent messages. See categories free, single message ($0.005), batch ($0.003/msg).
filtersafetycontentmoderationclassification -
Task Handoff
Secure task handoff between agents. Initiate ($0.05), receive ($0.02), verify ($0.01).
handoffcoordinationtaskbridgemulti-agent -
Wallet Management
Agent wallet provisioning ($0.50), payments ($0.001+), free balance checks.
walletpaymentsbalancefinanceprovisioning -
Identity Verification
Behavioral identity verification. Establish baseline ($0.05), check identity ($0.01).
identityverificationsecuritybehavioralauthentication -
Distributed Scheduler
Distributed locks ($0.001), task queuing ($0.005), deadlock detection ($0.01).
schedulerlocksqueuedeadlockdistributed -
Service Discovery
Discover agent services by criteria ($0.01). Free catalog browsing.
discoverycatalogservicesmarketplacebazaar -
Distributed Tracing
Record trace spans ($0.001), get full traces ($0.01), generate flamegraphs ($0.05).
tracingspansflamegraphdebuggingperformance
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("7929e7b2-61f2-43f4-a2ce-1bf3dd4d4ce1")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())