A2A v1.0
Fontana AI
Chloe A2A Agent Card
This site advertises Chloe's Agent-to-Agent discovery card for Fontana Flow interop.
- Public agent card:
/.well-known/agent-card.json - Canonical JSON-RPC endpoint:
/api/a2a/json-rpc - Current bridge mode: local FastAPI bridge available in
/opt/data/generated_content/a2a/chloe-a2a/chloe_a2a_bridge.py; public inbound tunnel/reverse proxy still needs host-level plumbing.
Agent card
{
"name": "Chloe, Fontana AI A2A Agent",
"description": "Chloe is Fontana AI's Hermes-based teammate. This A2A surface is for controlled agent-to-agent interoperability with Fontana Flow: research, repo/context inspection, task coordination, technical summaries, and auditable handoffs.",
"supportedInterfaces": [
{
"url": "https://chloe-a2a.chloe.fontana-ai.com/api/a2a/json-rpc",
"protocolBinding": "JSONRPC",
"protocolVersion": "1.0"
}
],
"provider": {
"organization": "Fontana AI",
"url": "https://fontana.ai"
},
"version": "0.1.0",
"documentationUrl": "https://chloe-a2a.chloe.fontana-ai.com/",
"capabilities": {
"streaming": false,
"pushNotifications": false,
"extendedAgentCard": false
},
"securitySchemes": {
"bearer": {
"httpAuthSecurityScheme": {
"scheme": "bearer"
}
}
},
"securityRequirements": [
{
"bearer": []
}
],
"defaultInputModes": [
"text/plain"
],
"defaultOutputModes": [
"text/plain"
],
"skills": [
{
"id": "fontana-context-research",
"name": "Fontana context research",
"description": "Inspect Fontana repo, specs, and local context mirrors to answer grounded questions or produce concise implementation notes.",
"tags": [
"fontana",
"research",
"repo",
"notion",
"slack"
],
"examples": [
"Summarize the A2A implementation in Flow and list integration gaps."
]
},
{
"id": "technical-handoff",
"name": "Technical handoff drafting",
"description": "Convert technical findings into auditable handoffs, implementation plans, and closure checks for the Fontana team.",
"tags": [
"handoff",
"engineering",
"planning"
],
"examples": [
"Create a short handoff for enabling Chloe inbound A2A connectivity."
]
},
{
"id": "deterministic-workflow-review",
"name": "Deterministic workflow review",
"description": "Review automation proposals for determinism, auditability, and non-black-box behaviour aligned with Fontana Flow positioning.",
"tags": [
"flow",
"auditability",
"automation"
],
"examples": [
"Review this agent delegation flow for audit trail gaps."
]
}
]
}