{
  "protocolVersion": "0.3.0",
  "name": "PepChile Storefront Agent",
  "description": "Read-only storefront agent for PepChile. Answers questions about the peptide catalog (price, stock, purity, guides), looks up order status by order number, and quotes shipping for Chile via Blue Express, Starken and Chilexpress.",
  "url": "https://pepchile.com/api/a2a",
  "preferredTransport": "JSONRPC",
  "provider": {
    "organization": "PepChile (Materia Gris SPA)",
    "url": "https://pepchile.com"
  },
  "version": "1.0.0",
  "documentationUrl": "https://pepchile.com/llms.txt",
  "defaultInputModes": ["text/plain"],
  "defaultOutputModes": ["text/plain", "application/json"],
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "securitySchemes": {
    "public": {
      "type": "noAuth",
      "description": "Read-only skills are public. Order lookups require an order number + the email address on the order."
    }
  },
  "security": [
    {
      "public": []
    }
  ],
  "skills": [
    {
      "id": "search_products",
      "name": "Search products",
      "description": "Search the PepChile catalog by name, category, use case or ingredient. Returns price in CLP, stock, purity and canonical product URL.",
      "tags": ["catalog", "search", "peptides", "chile"],
      "examples": [
        "Buscar peptidos para bajar de peso",
        "Cuanto cuesta la tirzepatida",
        "Tienen BPC-157 en stock"
      ],
      "inputModes": ["text/plain"],
      "outputModes": ["application/json"]
    },
    {
      "id": "check_stock",
      "name": "Check stock and price",
      "description": "Look up real-time stock and price for a specific product by slug.",
      "tags": ["catalog", "stock", "price"],
      "examples": [
        "Stock de retatrutide",
        "Precio de semaglutida"
      ],
      "inputModes": ["text/plain"],
      "outputModes": ["application/json"]
    },
    {
      "id": "get_shipping_quote",
      "name": "Shipping quote",
      "description": "Estimate shipping cost and ETA to a Chilean city via Blue Express, Starken or Chilexpress.",
      "tags": ["shipping", "chile", "courier"],
      "examples": [
        "Cuanto cuesta el envio a Concepcion"
      ],
      "inputModes": ["text/plain"],
      "outputModes": ["application/json"]
    },
    {
      "id": "get_order_status",
      "name": "Order status",
      "description": "Return the current status of an order given its order number and the email address on the order.",
      "tags": ["orders", "shipping", "support"],
      "examples": [
        "Estado de la orden PEP-2012"
      ],
      "inputModes": ["text/plain"],
      "outputModes": ["application/json"]
    }
  ]
}
