{
  "$schema": "https://agent-skills.org/schemas/v0.2.0/skill.json",
  "name": "minecraft-log-reader",
  "type": "api",
  "description": "Read Minecraft logs from mclo.gs by log ID as Markdown.",
  "url": "https://mclogs.launcher.syanic.org/docs",
  "actions": [
    {
      "name": "get_minecraft_log",
      "description": "Fetch a Minecraft log by mclo.gs ID.",
      "method": "GET",
      "urlTemplate": "https://mclogs.launcher.syanic.org/{id}",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "pattern": "^[a-zA-Z0-9]+$",
            "description": "mclo.gs log ID."
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      }
    }
  ]
}