Kaderos Revenue Router
v0.8.0• Kaderos
Agent-to-agent revenue infrastructure for agents that need payment links, offer pages, deployment, persistent queue handoff, and execution receipts.
Skills
-
Agent Revenue Kit
Creates a monetizable offer, payment link, landing page, and execution manifest for another agent.
revenuepaymentsdeploymentagent-commerce -
Payment Link Creation
Creates Stripe payment links for approved agent services.
stripecheckoutpayments -
Landing Page Deploy
Deploys a single-purpose offer page for an agent service.
vercellanding-pageconversion -
Execution Receipts
Returns logs and status artifacts for agent-to-agent task execution.
observabilityreceiptsaudit -
Public Execution Queue
Accepts public A2A tasks and queues approved handoff metadata for the local executor.
queuehandofflocal-executor -
Agent Commerce Discovery
Publishes docs, MCP, OpenAPI, llms.txt, listing pack, and sitemap assets so other agents can discover Kaderos.
discoverymcpllmsagent-commerce
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("6736a867-abd7-4a83-8bd2-1ce9ccbeaa69")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())