{
  "_comment": "A2A Agent Card · 對外宣告你企業 agent 的能力 · 範本 by twin3.ai · 部署位置: /.well-known/agent-card.json",
  "_spec": "https://github.com/a2aproject/A2A",

  "schema_version": "0.2.0",

  "name": "YOUR-COMPANY-NAME Agent",
  "description": "一句話描述:你這個 agent 對外能做什麼(20-40 字)",
  "url": "https://your-domain.com",

  "provider": {
    "organization": "YOUR-COMPANY-NAME",
    "url": "https://your-domain.com"
  },

  "version": "1.0.0",

  "documentationUrl": "https://your-domain.com/docs/agent",

  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },

  "securitySchemes": {
    "apiKey": {
      "type": "apiKey",
      "in": "header",
      "name": "X-API-Key",
      "description": "聯絡 hi@your-domain.com 申請 API key"
    }
  },

  "security": [
    { "apiKey": [] }
  ],

  "defaultInputModes": ["text"],
  "defaultOutputModes": ["text"],

  "skills": [
    {
      "id": "search_content",
      "name": "Search Content",
      "description": "搜尋本站文章 / 商品 / 服務",
      "tags": ["search", "discovery"],
      "examples": [
        "Find articles about X",
        "Search for product Y by category Z"
      ],
      "inputModes": ["text"],
      "outputModes": ["text"]
    },
    {
      "id": "get_item",
      "name": "Get Item Details",
      "description": "取得特定商品 / 文章 / 服務的詳細資訊",
      "tags": ["lookup"],
      "examples": [
        "Get details of product SKU-12345",
        "Get article ABC-67890 full text"
      ]
    },
    {
      "id": "check_availability",
      "name": "Check Availability",
      "description": "查詢即時庫存 / 開放時段 / 是否可預約",
      "tags": ["realtime"],
      "examples": [
        "Is product X in stock?",
        "Is time slot Y available?"
      ]
    }
  ],

  "supportsAuthenticatedExtendedCard": false
}
