{
  "skills": [
    {
      "id": "product-search",
      "name": "Product Search",
      "description": "Search the Chair Dinkum catalog for ergonomic office chairs, monitor arms, and soundproof pods",
      "endpoint": "https://chairdinkum.com.au/search",
      "inputSchema": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Search query for products"
          }
        }
      }
    },
    {
      "id": "product-lookup",
      "name": "Product Lookup",
      "description": "Get detailed product information including specs, pricing, and availability",
      "endpoint": "https://chairdinkum.com.au/products/{handle}.json",
      "inputSchema": {
        "type": "object",
        "properties": {
          "handle": {
            "type": "string",
            "description": "Product URL handle"
          }
        }
      }
    }
  ]
}