{
  "openapi": "3.1.0",
  "info": {
    "title": "rmbr public discovery API",
    "version": "1.0.0",
    "description": "Read-only discovery endpoints for AI agents and answer engines. rmbr is a screenshot organizer.",
    "contact": { "name": "rmbr", "url": "https://rmbrlater.com" }
  },
  "servers": [{ "url": "https://rmbrlater.com" }],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Short markdown overview for LLMs",
        "responses": { "200": { "description": "Markdown overview", "content": { "text/markdown": {} } } }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Full markdown reference, FAQ, feature list",
        "responses": { "200": { "description": "Markdown reference", "content": { "text/markdown": {} } } }
      }
    },
    "/.well-known/ai-plugin.json": {
      "get": { "summary": "ChatGPT plugin manifest", "responses": { "200": { "description": "JSON manifest" } } }
    },
    "/.well-known/agent.json": {
      "get": { "summary": "Generic agent manifest", "responses": { "200": { "description": "JSON manifest" } } }
    },
    "/mcp.json": {
      "get": { "summary": "MCP server descriptor", "responses": { "200": { "description": "JSON descriptor" } } }
    },
    "/sitemap.xml": {
      "get": { "summary": "Sitemap of public pages", "responses": { "200": { "description": "XML sitemap" } } }
    }
  }
}