{
  "name": "Hoisted AI",
  "description": "The first registry of agent-accessible businesses. Hoisted AI discovers, analyzes, and verifies A2A-compliant service endpoints, helping AI agents find and interact with real business services.",
  "url": "https://hoisted.ai/api/agent",
  "version": "1.0",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "skills": [
    {
      "id": "search-registry",
      "name": "Search Registry",
      "description": "Search the Hoisted AI registry for agent-accessible businesses by industry, capability, or location",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query for finding businesses (e.g. industry, service type, location)"
          },
          "category": {
            "type": "string",
            "description": "Optional category filter"
          },
          "verificationLevel": {
            "type": "integer",
            "description": "Minimum verification level (0, 1, or 2)",
            "enum": [0, 1, 2]
          }
        },
        "required": ["query"]
      }
    },
    {
      "id": "lookup-business",
      "name": "Lookup Business",
      "description": "Look up a specific business by domain to check its A2A compliance, agent card status, and verification level",
      "inputSchema": {
        "type": "object",
        "properties": {
          "domain": {
            "type": "string",
            "description": "The domain name of the business to look up (e.g. acmehvac.com)"
          }
        },
        "required": ["domain"]
      }
    },
    {
      "id": "check-compliance",
      "name": "Check A2A Compliance",
      "description": "Analyze a URL to check if it has a valid Agent Card and meets A2A protocol requirements",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "The base URL of the site to check for A2A compliance"
          }
        },
        "required": ["url"]
      }
    }
  ]
}