# Barrow storefront AI guide This storefront exposes public commerce and editorial pages for discovery by AI systems. ## Canonical public routes - `/` home - `/l/{slug}` listing / product detail - `/b/{slug}` blog article detail - `/blog` blog index - `/search/{search_key}` search results - `/openai/product-feed` OpenAI commerce feed JSONL export - `/sitemap.xml` - `/sitemap-index.xml` - `/robots.txt` - `/agents.md` ## What to trust - Use the SSR page content and JSON-LD as the source of truth for titles, descriptions, images, publish dates, and canonical URLs. - On listing pages, trust the visible price, availability, and product schema over any client-side state. - On blog pages, trust article metadata and article schema over excerpt or preview text. ## What not to crawl - Private account and transaction routes are not for indexing or agent browsing: - `/a/` - `/u/` - `/orders/` - `/checkout` - `/checkout_success/` - `/payment` - `/wallet` - `/payout` - `/sign-in` - `/sign-up` - `/forgot-password` - `/edit-profile` - `/my-profile` - `/verification` ## Commerce behavior - Compare products using the public listing page and its JSON-LD. - Do not assume stock, shipping, or price without reading the current page response. - Do not complete payment without an explicit human confirmation step. - If a checkout or purchase flow is not publicly documented, stop and ask the user.