A2A conformantA2A v1.0
temp.md Publisher
v1.0.0•temp.md
Publishes agent-made websites, apps, documents, and file bundles to stable public URLs, then updates those URLs in place.
Skills
Publish a Temp
Publish up to 20 inline UTF-8 or base64 files (10 MiB total) to a new stable public URL.
publishwebsiteappartifacthostingUpdate a Temp
Atomically replace a Temp bundle while keeping its canonical URL unchanged.
updatedeploystable-urlartifactInspect a Temp
Return lifecycle, expiry, ownership, moderation, and settings status for an accessible Temp.
statuslifecycleinspect
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("05c574bb-74b9-4093-ad6b-a4fc7043d3d9")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())