{
  "protocolVersion": "0.3.0",
  "name": "WhisperChat Agent",
  "description": "Creates, trains, and manages WhisperChat AI website chatbots, and answers questions from their knowledge bases.",
  "version": "0.1.0",
  "provider": {
    "organization": "WhisperChat",
    "url": "https://www.whisperchat.ai"
  },
  "documentationUrl": "https://www.whisperchat.ai/docs/api",
  "iconUrl": "https://www.whisperchat.ai/img/logo1.png",
  "url": "https://www.whisperchat.ai/a2a",
  "preferredTransport": "JSONRPC",
  "additionalInterfaces": [
    {
      "url": "https://www.whisperchat.ai/a2a",
      "transport": "JSONRPC"
    }
  ],
  "supportedInterfaces": [
    {
      "url": "https://www.whisperchat.ai/a2a",
      "transport": "JSONRPC"
    }
  ],
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "defaultInputModes": [
    "text/plain"
  ],
  "defaultOutputModes": [
    "text/plain",
    "application/json"
  ],
  "skills": [
    {
      "id": "manage-chatbots",
      "name": "Manage chatbots",
      "description": "Create, configure, rename, and delete AI chatbots for a website.",
      "tags": [
        "chatbot",
        "management"
      ],
      "examples": [
        "Create a support chatbot called Acme Helpdesk",
        "Delete the staging chatbot"
      ]
    },
    {
      "id": "train-knowledge",
      "name": "Train on knowledge",
      "description": "Add knowledge sources, crawl a website into the knowledge base, and train the chatbot.",
      "tags": [
        "training",
        "knowledge-base",
        "crawl"
      ],
      "examples": [
        "Crawl https://example.com/docs into my chatbot and train it"
      ]
    },
    {
      "id": "query-chatbot",
      "name": "Answer questions",
      "description": "Answer end-user questions using a trained chatbot's knowledge base.",
      "tags": [
        "qa",
        "retrieval",
        "support"
      ],
      "examples": [
        "What is your refund policy?"
      ]
    },
    {
      "id": "analytics-and-leads",
      "name": "Analytics and leads",
      "description": "Retrieve dashboard analytics, conversation history, and captured leads.",
      "tags": [
        "analytics",
        "leads",
        "reporting"
      ],
      "examples": [
        "Show this week's chat volume",
        "List new leads from the sales bot"
      ]
    }
  ]
}