Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions conformance/bin/conformance-test
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ import json
import urllib.request
import urllib.error

# Ensure UTF-8 output on Windows (cp1252 default cannot encode ✓/✗/⚠)
if hasattr(sys.stdout, 'reconfigure'):
sys.stdout.reconfigure(encoding='utf-8', errors='replace')
sys.stderr.reconfigure(encoding='utf-8', errors='replace')

# Strict URN Regex matching urn:air:<publisher>:<namespace>:<agent-name>
URN_REGEX = re.compile(r"^urn:air:([a-zA-Z0-9.-]+)(?::([a-zA-Z0-9._:-]+))?:([a-zA-Z0-9._-]+)$")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"identifier": "urn:air:bobs-plumbing.example:agent:assistant",
"displayName": "Bob's Plumbing & Drain AI Assistant",
"type": "application/a2a-agent-card+json",
"mediaType": "application/a2a-agent-card+json",
"url": "https://bobs-plumbing.example/.well-known/agent-card.json",
"description": "Conversational A2A agent for a family-owned plumbing company in Minneapolis, MN. Answers service questions, checks technician availability, and books appointments over the A2A protocol.",
"tags": ["local-business", "plumbing", "home-services"],
Expand Down Expand Up @@ -48,7 +47,6 @@
"identifier": "urn:air:bobs-plumbing.example:mcp:storefront",
"displayName": "Bob's Plumbing & Drain Storefront Tools",
"type": "application/mcp-server-card+json",
"mediaType": "application/mcp-server-card+json",
"description": "MCP server card for the business storefront: structured tools to check technician availability, request a quote, and look up hours and service area. Embedded inline via the data field (value-or-reference, ARD 3.4).",
"tags": ["local-business", "booking", "quotes"],
"capabilities": ["check_availability", "request_quote", "get_business_hours"],
Expand Down