A2A conformant
Streaming
A2A v0.3.0
Brad Brewer – Person
v1.0.0• inHotel
Skills
-
Next Questions
Helps keep the conversation flowing by proposing tailored questions to ask next, based on the current discussion or shared interests. Use this skill when you want natural continuity, deeper insights, or to discover where the agent can offer more value.
defaultsuggestionsrelatedquestionsconversationcontinuitydiscovery -
Information
Provides basic, publicly shareable information about the agent's identity, role, core capabilities, and area of responsibility. Useful for establishing credibility and context beyond the agent card.
defaultpublicintroductionprofileaboutcapabilitiesrole
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("e1fd88bf-f269-4bbc-9c0f-ad68df5214cb")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())