{
  "$schema": "https://agentskills.io/schema/v0.2.0/index.json",
  "version": "0.2.0",
  "site": "https://rar-trading.com",
  "name": "RAR TRADING Agent Skills",
  "description": "Agent-accessible capabilities for the RAR TRADING ICT education platform",
  "skills": [
    {
      "name": "get-courses",
      "type": "api",
      "description": "Retrieve the full list of RAR TRADING ICT trading courses with details: title, description, curriculum, pricing (Monthly $99, 3-Month $249, Lifetime $499), and enrollment info",
      "url": "https://rar-trading.com/api/courses",
      "method": "GET",
      "responseType": "application/json"
    },
    {
      "name": "get-testimonials",
      "type": "api",
      "description": "Retrieve verified student testimonials and funded account success stories from RAR TRADING graduates",
      "url": "https://rar-trading.com/api/testimonials",
      "method": "GET",
      "responseType": "application/json"
    },
    {
      "name": "get-site-content",
      "type": "document",
      "description": "Get the complete site content guide for RAR TRADING in Markdown format, including all pages, ICT educational resources, and key entities",
      "url": "https://rar-trading.com/markdown",
      "method": "GET",
      "responseType": "text/markdown",
      "headers": {
        "Accept": "text/markdown"
      }
    },
    {
      "name": "submit-lead",
      "type": "api",
      "description": "Submit a prospective student lead or inquiry to RAR TRADING",
      "url": "https://rar-trading.com/api/leads",
      "method": "POST",
      "requestType": "application/json",
      "responseType": "application/json",
      "schema": {
        "body": {
          "type": "object",
          "required": ["name", "email"],
          "properties": {
            "name":    { "type": "string", "description": "Student full name" },
            "email":   { "type": "string", "format": "email" },
            "phone":   { "type": "string", "description": "WhatsApp or phone number" },
            "message": { "type": "string", "description": "Inquiry message" }
          }
        }
      }
    }
  ]
}
