{
  "openapi": "3.1.0",
  "info": {
    "title": "SkaldMaps Public Agent Resources",
    "version": "1.0.0",
    "description": "A catalog of SkaldMaps public discovery resources for agents. It does not describe or grant access to the private browser application API."
  },
  "servers": [
    {
      "url": "https://skaldmaps.com"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Read concise SkaldMaps agent context",
        "responses": {
          "200": {
            "description": "Plain-text agent context",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Read complete SkaldMaps agent context",
        "responses": {
          "200": {
            "description": "Plain-text agent context",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/sitemap-index.xml": {
      "get": {
        "summary": "Read the marketing-site sitemap index",
        "responses": {
          "200": {
            "description": "XML sitemap index",
            "content": {
              "application/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/docs/sitemap.xml": {
      "get": {
        "summary": "Read the public product-documentation sitemap",
        "responses": {
          "200": {
            "description": "XML sitemap",
            "content": {
              "application/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/developers/": {
      "get": {
        "summary": "Read agent-resource guidance and public product references",
        "responses": {
          "200": {
            "description": "HTML resource index",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}