{
  "$schema": "https://agents.md/schema.json",
  "name": "ReBorn / Cimonamia",
  "description": "Multi-country editorial e-commerce for sustainable and reborn fashion. Browse products, view categories, get shipping estimates, and place orders.",
  "url": "https://cimonamia.com",
  "publisher": {
    "name": "Cimonamia",
    "url": "https://cimonamia.com"
  },
  "documentation": "https://cimonamia.com/api/docs",
  "api": {
    "openapi": "https://cimonamia.com/api/openapi.json",
    "base_url": "https://cimonamia.com/api",
    "auth": {
      "type": "bearer_jwt",
      "description": "JWT bearer token issued at POST /api/auth/login. Required only for user-scoped actions (orders, addresses, wishlist). Public browsing, search, and shipping quotes are anonymous.",
      "login_endpoint": "https://cimonamia.com/api/auth/login",
      "docs": "https://cimonamia.com/.well-known/auth.md"
    }
  },
  "content": {
    "html": "https://cimonamia.com/",
    "markdown_endpoints": {
      "catalog": "https://cimonamia.com/api/agent/catalog.md",
      "product": "https://cimonamia.com/api/agent/products/{slug}.md",
      "category": "https://cimonamia.com/api/agent/categories/{slug}.md",
      "page": "https://cimonamia.com/api/agent/pages/{slug}.md"
    },
    "content_negotiation": {
      "accept_markdown": "Request any /api/agent/* URL with `Accept: text/markdown` to receive markdown; JSON is returned otherwise."
    }
  },
  "skills": [
    {
      "id": "unified_checkout",
      "description": "One-call agent checkout — combines catalog lookup, shipping quote, and Stripe payment session in a single request. RECOMMENDED for agents over the 3-step flow.",
      "endpoint": "POST /api/agent/checkout",
      "documentation": "https://cimonamia.com/skills/unified_checkout.md",
      "recommended": true
    },
    {
      "id": "search_products",
      "description": "Full-text search across the product catalog with filters (category, brand, price range, country pricing).",
      "endpoint": "GET /api/products",
      "parameters": {
        "q": "search query",
        "categories": "comma-separated category IDs",
        "brands": "comma-separated brand IDs",
        "min_price": "number",
        "max_price": "number",
        "sort": "createdAt_desc|createdAt_asc|price_asc|price_desc|name_asc|name_desc",
        "page": "1-based",
        "limit": "max 100",
        "country": "ISO 3166-1 alpha-2 (defaults to CO)"
      },
      "example": "https://cimonamia.com/api/products?q=abrigo&country=CO&limit=20"
    },
    {
      "id": "get_product",
      "description": "Retrieve full product details (name, description, price in country currency, inventory, images, variants) by URL slug.",
      "endpoint": "GET /api/products/slug/{slug}",
      "example": "https://cimonamia.com/api/products/slug/abrigo-nomada?country=CO"
    },
    {
      "id": "list_categories",
      "description": "List all active categories with localized names.",
      "endpoint": "GET /api/categories",
      "example": "https://cimonamia.com/api/categories?country=CO"
    },
    {
      "id": "shipping_quote",
      "description": "Calculate shipping options and prices for a destination. Returns Envía.com carriers plus manual rates, auto-converted to the storefront currency.",
      "endpoint": "POST /api/shipping/calculate",
      "body_schema": {
        "destination": {
          "country": "ISO 3166-1 alpha-2",
          "state": "string",
          "city": "string",
          "postal_code": "string",
          "street": "string"
        },
        "currency": "USD | COP | MXN | ..."
      }
    },
    {
      "id": "track_order",
      "description": "Look up an order by tracking number or order id (public tracking endpoint).",
      "endpoint": "GET /api/tracking/{order_id}",
      "example": "https://cimonamia.com/api/tracking/ORD-2026-0001"
    },
    {
      "id": "list_countries",
      "description": "List every country the store ships to, with currency and tax config.",
      "endpoint": "GET /api/localization/countries"
    }
  ],
  "policies": {
    "content_signals": "search=yes, ai-input=yes, ai-train=no",
    "terms": "https://cimonamia.com/pages/legal/terminos",
    "privacy": "https://cimonamia.com/pages/legal/privacidad"
  },
  "contact": {
    "support": "https://cimonamia.com/contact",
    "email": "hola@cimonamia.com"
  }
}
