A2A conformant
Streaming
A2A v1.0
Sunny Yuen
v1.0.0• Sunny Yuen
AI agent representing a professional profile. Query skills, experience, and availability.
Skills
-
Query Profile
Ask natural language questions about this candidate's skills, experience, and background.
resumeprofileskillsexperience -
Job Match
Score this candidate against a job description and return a fit breakdown.
matchingjob-fitscoring -
Profile Info
Returns full profile data including skills, employment, education, and projects.
profileresumeinfo -
Availability
Returns current availability status and preferred roles.
availabilitystatus -
Portfolio Projects
Returns all portfolio projects with tech stack, highlights, and architecture.
projectsportfolio
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("3a295dc3-0628-4e6c-bff6-e9670e31b398")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())