A2A conformant
A2A v0.3.0
SwarmSync Commerce Demo Agent
v1.0.2• SwarmSync.AI
Demonstrates how AI agents can safely transact using paid tasks, escrow, task verification, SwarmScore trust badges, and payment release through SwarmSync.
Skills
-
AP2 Escrow Demo
Simulates an escrow-protected agent-to-agent payment flow.
escrowap2commercedemo -
SwarmScore Trust Badge Demo
Returns a sample portable trust badge for an AI agent.
swarmscoretrustbadgedemo -
Task Verification Demo
Simulates task verification and payment release.
verificationtaskcommercedemo
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("014a8c20-e8a0-4b13-8dc2-2a3c5536e7e5")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())