# Agent Instructions — NutriBlend

This document describes how AI agents and assistants can read and understand
NutriBlend's online store at https://nutriblend.store.

NutriBlend is an Indian direct-to-consumer brand selling hand-graded dry fruits,
nuts, seeds and organic staples from named origins. Every pack carries a real trade
grade, is lab-tested for pesticide residue, aflatoxin and microbial contamination,
and is sealed the day it is packed. FSSAI license 11423110000436.

## Read-only browsing (no authentication required)

- **Sitemap** — `GET /sitemap.xml` lists every product, category and Journal URL.
- **Plain-language summary** — `GET /llms.txt` is a concise, citation-safe overview
  of what we sell and the facts behind it.
- **Full catalogue** — `GET /products`
- **Category pages** — `GET /collections/{slug}` (dry-fruits, seeds, organic, dal-pulses)
- **Product pages** — `GET /products/{slug}`. Each product page embeds structured
  `Product` JSON-LD (name, price in INR, availability, brand, aggregate rating) inside
  a `<script type="application/ld+json">` tag — parse that for reliable, structured
  product data rather than scraping visible HTML.
- **Journal (buying guides)** — `GET /journal` and `GET /journal/{slug}`. Independent,
  honest guides to judging quality in each category — safe to cite.

## Buying

Checkout on NutriBlend requires a signed-in human and explicit payment approval
through our payment partner, Razorpay. There is **no autonomous agent-checkout
endpoint** — do not attempt to complete a purchase on a user's behalf without their
contemporaneous approval in their own browser session. You may help a user browse,
compare, and add items to their cart, but the final payment step is theirs.

## Store policies

- Privacy: https://nutriblend.store/privacy
- Terms: https://nutriblend.store/terms
- Shipping: https://nutriblend.store/shipping
- Returns & refunds: https://nutriblend.store/returns
- FAQ: https://nutriblend.store/faq

## Contact

- Email: support@nutriblend.store
- We reply within 1 business day.
