{
  "openapi": "3.1.0",
  "info": {
    "title": "Ayush Baluni Agent Discovery",
    "description": "Full-Stack Software Engineer with 2+ years building scalable production applications, enterprise data platforms, AI agent systems, and Web3/Solana projects. Currently at ShyftLabs delivering solutions for Fortune 500 clients.\n\nDiscovery endpoints for AI agents. Use llms.txt for a curated site index and agent.json for declared capabilities.",
    "version": "1.0.0",
    "contact": {
      "name": "Ayush Baluni",
      "url": "https://ayushbaluni.in"
    }
  },
  "servers": [
    {
      "url": "https://ayushbaluni.in",
      "description": "Site origin"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "operationId": "get_llms_txt",
        "summary": "LLM-readable site index (llmstxt.org)",
        "responses": {
          "200": {
            "description": "Resource body",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "operationId": "get_llms_full_txt",
        "summary": "Full deduplicated page content for context ingestion",
        "responses": {
          "200": {
            "description": "Resource body",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/agent.json": {
      "get": {
        "operationId": "get_agent_json",
        "summary": "Machine-readable capability manifest (agent.json v1.4)",
        "responses": {
          "200": {
            "description": "JSON resource",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
