TL;DR : curl https://buywhere.ai/.well-known/agent.json returns a machine-readable Agent Card. Your agent discovers 6 skills — search, match, price compare — without any prior configuration. Google's Agent2Agent (A2A) protocol is spreading fast. Here's what running an A2A discovery looks like right now: curl -s https://buywhere.ai/.well-known/agent.json | jq '.skills | .[] | {id, name}' Enter fullscreen mode Exit fullscreen mode Returns: { "id" : "search_products" , "name" : "Search Products" } { "id" : "get_product" , "name" : "Get Product Details" } { "id" : "find_best_price" , "name" : "Find Best Price" } { "id" : "get_deals" , "name" : "Get Deals & Promotions" } { "id" : "get_recommendations" , "name" : "Get Recommendations" } { "id" : "cross_border_match" , "name" : "Cross-Border Product Matching" } Enter fullscreen mode Exit fullscreen mode That's it.…