{ "$schema": "https://agentskills.io/schema/v0.2.0/index.json", "name": "Yamamah Smart SIS", "description": "Agent skills for Yamamah Smart - Acoustic Engineering & Insulation Solutions in Saudi Arabia", "url": "https://www.yamamahsis.com", "version": "1.0.0", "contact": { "name": "Yamamah Smart Support", "email": "info@yamamahsis.com", "url": "https://www.yamamahsis.com/contactus" }, "skills": [ { "id": "browse-products", "name": "browse-products", "description": "Browse Yamamah Smart acoustic products catalog including panels, soundproofing, and insulation solutions", "endpoint": "https://www.yamamahsis.com/shop", "url": "https://www.yamamahsis.com/shop", "type": "navigation", "inputSchema": { "type": "object", "properties": { "category": { "type": "string", "description": "Product category to filter by" } } }, "outputSchema": { "type": "object", "properties": { "products": { "type": "array", "description": "List of acoustic products" } } } }, { "id": "contact-support", "name": "contact-support", "description": "Contact Yamamah Smart support team for acoustic engineering consultations and quotes", "endpoint": "https://www.yamamahsis.com/contactus", "url": "https://www.yamamahsis.com/contactus", "type": "action", "inputSchema": { "type": "object", "properties": { "name": { "type": "string", "description": "Contact person name" }, "email": { "type": "string", "description": "Contact email address" }, "message": { "type": "string", "description": "Inquiry message" } }, "required": [ "name", "email", "message" ] }, "outputSchema": { "type": "object", "properties": { "success": { "type": "boolean" } } } }, { "id": "about-company", "name": "about-company", "description": "Learn about Yamamah Smart company, its history and acoustic engineering expertise in Saudi Arabia", "endpoint": "https://www.yamamahsis.com/about-us", "url": "https://www.yamamahsis.com/about-us", "type": "information", "inputSchema": { "type": "object", "properties": {} }, "outputSchema": { "type": "object", "properties": { "company_info": { "type": "string", "description": "Company information" } } } } ] }