{
  "$schema": "https://a2a-protocol.org/schemas/agent-card/v0.2.json",
  "name": "Tenbyte Content Agent",
  "version": "0.1.0",
  "description": "Read-only agent for the Tenbyte website. Exposes pages and blog search as markdown responses, suitable for retrieval by other agents.",
  "url": "https://www.tenbyte.io",
  "provider": {
    "organization": "Tenbyte",
    "url": "https://www.tenbyte.io"
  },
  "documentationUrl": "https://www.tenbyte.io/.well-known/agent-skills/markdown-content/SKILL.md",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "authentication": {
    "schemes": [
      "none"
    ]
  },
  "defaultInputModes": [
    "text/plain"
  ],
  "defaultOutputModes": [
    "text/markdown"
  ],
  "supportedInterfaces": [
    {
      "url": "https://www.tenbyte.io/",
      "transport": "http",
      "protocol": "content-negotiation",
      "description": "Request any path on the origin with Accept: text/markdown to receive a markdown rendering of the page."
    },
    {
      "url": "https://www.tenbyte.io/search",
      "transport": "http",
      "protocol": "content-negotiation",
      "description": "Search blog content by sending Accept: text/markdown to /search?q={query}."
    }
  ],
  "skills": [
    {
      "id": "fetch-page-markdown",
      "name": "Fetch page as markdown",
      "description": "Retrieve any public page on tenbyte.io as a markdown document. Navigation and chrome are stripped; the <main> content region is returned.",
      "tags": [
        "content",
        "retrieval",
        "markdown"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/markdown"
      ],
      "examples": [
        "Fetch /cdn as markdown",
        "Get the Vidinfra product page in markdown form",
        "Read the latest blog index as markdown"
      ]
    },
    {
      "id": "search-blog",
      "name": "Search blog posts",
      "description": "Search Tenbyte blog posts by free-text query and return the results page as markdown.",
      "tags": [
        "search",
        "blog",
        "retrieval"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/markdown"
      ],
      "examples": [
        "Search the blog for \"cloud storage\"",
        "Find articles about CDN performance"
      ]
    }
  ],
  "discovery": {
    "apiCatalog": "https://www.tenbyte.io/.well-known/api-catalog",
    "agentSkills": "https://www.tenbyte.io/.well-known/agent-skills/index.json",
    "mcpServerCard": "https://www.tenbyte.io/.well-known/mcp/server-card.json",
    "sitemap": "https://www.tenbyte.io/sitemap.xml"
  }
}