{
  "$schema": "https://agentskills.io/schema/v0.2.0/index.json",
  "skills": [
    {
      "name": "search-news",
      "type": "http",
      "description": "Search Arabic news articles on Al-Marsd by keyword. Returns a list of matching articles with titles, summaries and URLs.",
      "url": "https://al-marsd.com/search?query={q}",
      "inputSchema": {
        "type": "object",
        "properties": {
          "q": { "type": "string", "description": "Search query in Arabic or English" }
        },
        "required": ["q"]
      }
    },
    {
      "name": "get-latest-news",
      "type": "http",
      "description": "Get the latest Arabic news articles from Al-Marsd homepage",
      "url": "https://al-marsd.com/",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get-sport-news",
      "type": "http",
      "description": "Get the latest Arabic sports news from Al-Marsd sport section",
      "url": "https://sport.al-marsd.com/",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
