{
  "openapi": "3.1.0",
  "info": {
    "contact": {
      "name": "Chris Boyd",
      "url": "https://chrisboyd.me/contact/"
    },
    "description": "Agent-discovery files for Chris Boyd (chrisboyd.me).\n\nHuman docs: https://chrisboyd.me/developers/\n\nThis document: https://chrisboyd.me/openapi.json\n\nHTML pages on chrisboyd.me also negotiate `Accept: text/markdown` and set `Vary: Accept, Accept-Encoding`.",
    "title": "Chris Boyd",
    "version": "3.0.0"
  },
  "jsonSchemaDialect": "https://spec.openapis.org/oas/3.1/dialect/base",
  "servers": [
    {
      "description": "ChrisBoyd.me public site",
      "url": "https://chrisboyd.me"
    }
  ],
  "tags": [
    {
      "description": "Agent and developer discovery files on chrisboyd.me",
      "name": "Discovery"
    }
  ],
  "paths": {
    "/openapi.json": {
      "get": {
        "operationId": "getOpenApiSpec",
        "summary": "Chris Boyd OpenAPI specification",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "OpenAPI 3.1 document",
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": true,
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsTxt",
        "summary": "AI-readable site index",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "Plain-text llms.txt",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "operationId": "getLlmsFullTxt",
        "summary": "Full text of recent articles",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "Plain-text article export",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "operationId": "getSitemap",
        "summary": "XML sitemap",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "XML sitemap",
            "content": {
              "application/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/rss.xml": {
      "get": {
        "operationId": "getRssFeed",
        "summary": "RSS feed of posts",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "RSS 2.0 feed",
            "content": {
              "application/rss+xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/agent-health.json": {
      "get": {
        "operationId": "getAgentHealth",
        "summary": "Agent health and discovery metadata",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "Health document",
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "capabilities": {
                      "additionalProperties": {
                        "type": "boolean"
                      },
                      "type": "object"
                    },
                    "endpoints": {
                      "additionalProperties": {
                        "type": "string"
                      },
                      "type": "object"
                    },
                    "status": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "status"
                  ],
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/developers/": {
      "get": {
        "operationId": "getDeveloperResources",
        "summary": "Chris Boyd developer resources",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "Developer resources page (HTML or Markdown via Accept)",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              },
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}