{
  "name": "Sailesh Dahal",
  "description": "The agent-facing discovery surface for saileshdahal.com.np. This is a static, read-only personal site and blog: it publishes machine-readable content for agents (llms.txt, markdown twins, a JSON Feed) but exposes no A2A request runtime. This card advertises the content it makes available so other agents can discover and read it; it is not an endpoint that accepts agent-to-agent task requests.",
  "version": "1.0.0",
  "supportedInterfaces": [
    {
      "url": "https://saileshdahal.com.np/.well-known/agent-card.json",
      "protocolBinding": "HTTP+JSON",
      "protocolVersion": "1.0"
    }
  ],
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "extendedAgentCard": false
  },
  "defaultInputModes": [
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/linkset+json",
    "text/markdown",
    "application/feed+json",
    "text/plain"
  ],
  "skills": [
    {
      "id": "read-content-index",
      "name": "Read content index",
      "description": "Read the per-post agent index (llms.txt) that points at every article and the machine-readable formats this site exposes.",
      "tags": [
        "discovery",
        "content",
        "index"
      ],
      "examples": [
        "What has Sailesh Dahal written about AI agents?"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/plain"
      ]
    },
    {
      "id": "read-markdown-twin",
      "name": "Read markdown twin",
      "description": "Fetch the markdown twin of any page by appending .md to its URL (e.g. /archive.md, /index.md, /contact.md, /series/{slug}.md, /tag/{slug}.md), for single-fetch or per-page ingestion.",
      "tags": [
        "content",
        "markdown",
        "retrieval"
      ],
      "examples": [
        "Give me the full text of the post at /flavor-setup-flutter"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/markdown"
      ]
    },
    {
      "id": "read-feed",
      "name": "Read content feed",
      "description": "Read the JSON Feed (feed.json) or full corpus (llms-full.txt) to enumerate or ingest the site's posts.",
      "tags": [
        "content",
        "feed",
        "retrieval"
      ],
      "examples": [
        "List the latest posts on this site"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "application/feed+json",
        "text/plain"
      ]
    }
  ]
}
