{
  "name": "HelpNest Knowledge Base",
  "description": "AI-powered knowledge base with semantic search and RAG answers",
  "version": "1.0.0",
  "url": "https://help.flypass.dev/api/a2a",
  "protocol_version": "0.2.0",
  "default_input_modes": [
    "text/plain"
  ],
  "default_output_modes": [
    "text/plain",
    "text/markdown"
  ],
  "capabilities": {
    "streaming": true,
    "pushNotifications": false
  },
  "skills": [
    {
      "id": "search",
      "name": "Search Knowledge Base",
      "description": "Full-text and semantic search across help articles",
      "tags": [
        "search",
        "articles",
        "faq"
      ],
      "examples": [
        "How do I reset my password?",
        "Billing questions"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "application/json"
      ]
    },
    {
      "id": "ai_answer",
      "name": "AI-Powered Answer",
      "description": "Generate an answer using RAG — searches articles, then synthesizes a response with sources",
      "tags": [
        "ai",
        "answer",
        "rag",
        "support"
      ],
      "examples": [
        "How do I change my subscription plan?"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/markdown"
      ]
    },
    {
      "id": "get_article",
      "name": "Get Article",
      "description": "Retrieve a specific article by slug or ID",
      "tags": [
        "article",
        "content"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "text/markdown"
      ]
    }
  ]
}