{
  "schema": "https://a2a.dev/schemas/agent-card/v1",
  "name": "Norte — comercio agentic",
  "description": "Agente de comercio de Norte (tienda en becommerce, Believe Global). Permite a un agente externo buscar productos, armar un carrito y completar la compra sobre el checkout real de la tienda (Medusa v2).",
  "provider": {
    "organization": "Believe Global",
    "url": "https://believe-global.com"
  },
  "url": "https://norte.becommerce.believe-global.com/store/acp",
  "protocol": "believe-acp/1.0",
  "capabilities": {
    "commerce": true,
    "streaming": false,
    "push_notifications": false
  },
  "authentication": {
    "schemes": [
      "none"
    ],
    "note": "Catalogo y checkout test publicos; pago via pp_system_default."
  },
  "default_input_modes": [
    "application/json"
  ],
  "default_output_modes": [
    "application/json"
  ],
  "skills": [
    {
      "id": "search",
      "name": "Buscar productos",
      "description": "Busca productos comprables por texto.",
      "invoke": {
        "method": "GET",
        "url": "https://norte.becommerce.believe-global.com/store/acp/search?q={query}"
      }
    },
    {
      "id": "create_cart",
      "name": "Crear carrito",
      "description": "Crea un carrito y añade el primer item.",
      "invoke": {
        "method": "POST",
        "url": "https://norte.becommerce.believe-global.com/store/acp/cart",
        "body": {
          "variant_id": "string",
          "quantity": "number",
          "email": "string?"
        }
      }
    },
    {
      "id": "get_cart",
      "name": "Ver carrito",
      "description": "Estado actual del carrito.",
      "invoke": {
        "method": "GET",
        "url": "https://norte.becommerce.believe-global.com/store/acp/cart/{cart_id}"
      }
    },
    {
      "id": "add_to_cart",
      "name": "Añadir al carrito",
      "description": "Añade un item a un carrito existente.",
      "invoke": {
        "method": "POST",
        "url": "https://norte.becommerce.believe-global.com/store/acp/cart/{cart_id}/items",
        "body": {
          "variant_id": "string",
          "quantity": "number"
        }
      }
    },
    {
      "id": "checkout",
      "name": "Comprar",
      "description": "Dirección + envío + pago + orden confirmada.",
      "invoke": {
        "method": "POST",
        "url": "https://norte.becommerce.believe-global.com/store/acp/checkout",
        "body": {
          "cart_id": "string",
          "email": "string",
          "shipping_address": "object",
          "shipping_option_id": "string?"
        }
      }
    }
  ],
  "related": {
    "catalog_feed": "https://norte.becommerce.believe-global.com/store/agent-feed",
    "brand_profile": "https://norte.becommerce.believe-global.com/.well-known/brand.json",
    "descriptor": "https://norte.becommerce.believe-global.com/store/acp"
  },
  "generated_by": "becommerce agent-resources (W5) — becommerce.online"
}