A2A conformantStreamingA2A v0.3

Jake Gaylor

v1.3.0Jake Gaylor

Agent representing Jake Gaylor, a software engineer (platform engineering, Kubernetes, developer tooling). Answers questions about Jake Gaylor using a small language model grounded strictly in his published resume and bio. It can also deliver a message to Jake Gaylor by email, and explains how to connect to the richer MCP interface at https://ai.jakegaylor.com/mcp.

Launch agent website ↗

Skills

  • About Jake Gaylor

    Answers any question about Jake Gaylor's experience, skills, and background, grounded in his resume and bio. Falls back to returning the complete resume as markdown if the answer cannot be generated.

    resumehiringbackgroundsoftware-engineer
  • Screening & Logistics

    Structured screening data as JSON: role types, level, location, relocation, remote preference, work authorization, compensation stance, availability, and machine-readable resume links (JSON Resume at https://jakegaylor.com/resume.json). Ask for "preferences" or "screening data".

    screeninglogisticshiringstructured-data
  • Schedule an Intro Call

    Books a 30-minute intro call on Jake Gaylor's real calendar. Ask about availability to get open slots, then send `BOOK: <slot ISO time> | <your email> | <your name> | <optional note>`. Bookings are pending until Jake Gaylor confirms; the booker receives the outcome by email. Humans can book directly at the booking page returned with the slots.

    schedulingcalendarhiringbooking
  • Assess Role Fit

    Send a job description (paste it directly or prefix with "JD:") and get an honest fit assessment grounded in Jake Gaylor's resume: a direct verdict, strengths with cited evidence, gaps named plainly, a logistics check against his screening data, and suggested interview questions. LLM-backed; if the model is unavailable it returns the resume and screening data for the caller to assess directly.

    hiringrole-fitassessmentjob-description
  • Connect via MCP

    Returns instructions for connecting to Jake Gaylor's Model Context Protocol server, which exposes his resume, links, and contact tools to MCP-capable clients. Triggered by any message mentioning MCP.

    mcpintegrationmodel-context-protocol
  • Contact Jake Gaylor

    Delivers a message to Jake Gaylor by email. Start the message text with "CONTACT:" and include the opportunity details plus a reply address so Jake Gaylor can respond.

    contactemailhiring

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("42c185d8-46c2-48f5-acd7-1982f1a2c5ed")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())