{
  "$schema": "https://agent-skills.org/schemas/v1/index.json",
  "version": "1.0.0",
  "provider": {
    "name": "Are We Agent Ready?",
    "url": "https://areweagentready.com/"
  },
  "updated": "2026-05-04",
  "skills": [
    {
      "name": "scan_site",
      "description": "Audit a URL for AI-agent readiness. Returns a scan_id; poll get_scan_result for findings.",
      "endpoint": "https://areweagentready.com/api/scans",
      "method": "POST",
      "auth": "none",
      "rate_limit": {
        "per_day_anon": 2,
        "per_day_free": 3
      },
      "input_schema": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri"
          },
          "competitor_url": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "get_scan_result",
      "description": "Fetch findings, scores, and evidence for a scan by id.",
      "endpoint": "https://areweagentready.com/api/scans/{id}",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "list_audits",
      "description": "Enumerate every audit module available \u2014 live and coming soon \u2014 with price and status.",
      "endpoint": "https://areweagentready.com/api/audits/catalog",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_methodology",
      "description": "Return the machine-readable scoring methodology: pillars, archetypes, weights, status factors.",
      "endpoint": "https://areweagentready.com/api/methodology",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_scan_coverage",
      "description": "Public, non-PII coverage snapshot for a completed scan \u2014 safe to embed in dashboards.",
      "endpoint": "https://areweagentready.com/api/scans/{id}/coverage",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string"
          }
        }
      }
    }
  ]
}