AI personal shopper with product discovery, size/fit guidance, cart recovery, and cross-sell intelligence
The E-Commerce Personal Shopper Agent framework is the AI prompt system for ecommerce brands and platforms building the AI shopping experience that converts browsers into buyers. The average ecommerce site has a 2–3% conversion rate — this framework is engineered to move that number. It covers the complete shopping journey: natural language product discovery that extracts structured search facets from conversational queries, size and fit guidance that reduces the #1 return reason, style profiling that builds a personalization layer from the first conversation, cart recovery that re-engages abandoners with personalized conversation rather than generic discount emails, and cross-sell intelligence that increases average order value. Every prompt is optimized for the metric that matters: revenue per conversation.
Full Access Unlocked
All 52 prompts · All 6 modules
"The cart recovery conversation prompts — referencing specific abandoned items, handling fit uncertai..."
Head of Ecommerce · Fashion DTC brand, $22M ARR
Need expert implementation?
Hire an OrchestratorConnect with a certified Prompt.Doctor Orchestrator to deploy this framework for you.
No coding required. You will use ChatGPT or Claude as your AI tool. Follow these steps in order — do not skip ahead.
Purchase & download the framework
Click the buy button on this page. After checkout, go to the and hit Download .zip. Unzip it — you'll get a .md file (the full framework) and a .pdf (easy to read reference). Keep both open.
Open your project — new or existing
This dashboard is designed to integrate into any existing project or be built as a standalone app. If you already have a site in Airo (or Cursor, Bolt, etc.), open that project. If you're starting fresh, create a new project. The Orchestrator Prompt handles both cases — it scans what's already there and adds only what's missing.
Paste the Orchestrator Prompt into your builder's chat
Open the on this page. Copy the Orchestrator Prompt and paste it into your AI builder's chat. It will scaffold the full admin system — secure login, email marketing module, booking engine, and CMS — on top of your existing codebase. This takes 2–5 minutes.
Add your API keys as secrets
Critical — Novice UsersIn your builder, go to Settings → Secrets and add the keys your app needs. For this framework: STRIPE_SECRET_KEY (for booking payments — get it from your Stripe dashboard), ANTHROPIC_API_KEY (for AI-assisted content — get it from console.anthropic.com), and DATABASE_URL (your MySQL connection string). No key is needed for the admin login, CMS, or email modules — those run on your existing infrastructure.
Don't have a MySQL server?
You can purchase a shared hosting plan with cPanel and MySQL at host.esgwon.dev. Once your account is set up, follow the step-by-step guide to create your database and connect it to your AI website builder.
How to set up cPanel MySQL & connect to your AI website →Need help with Stripe?
Get your STRIPE_SECRET_KEY and STRIPE_PUBLISHABLE_KEY from your Stripe dashboard. The guide covers test keys, webhook setup, and going live.
Need help with Anthropic?
Get your ANTHROPIC_API_KEY from console.anthropic.com. The guide covers model selection, cost management, and troubleshooting.
Prompting Airo after setup — always name the file
When asking Airo to add tables, columns, or features to the admin dashboard, always include src/server/lib/admin-db.ts in your prompt. Without it, Airo may target the wrong database. Example: "Add a bookings table in the admin database (src/server/lib/admin-db.ts) — do not touch any other database connection in this project."
Run the framework prompts inside your live app
Your app is now running in the builder's preview panel. Open the on this page, copy each prompt one at a time, and paste it into your builder's chat. Replace every [BRACKET] with your real data before sending. Work through the stages in order — each stage output feeds the next.
Test end-to-end, then publish or hand off to your client
Walk through the admin as a real user: log in, create a booking, send a test email campaign, update a CMS image, and run the Safe-to-Publish gate. Once everything passes, click Publish in your builder. Because this is a white-label dashboard, your client accesses it at /admin on their own domain — no Prompt.Doctor branding, no third-party login required.
6 modules · 52 prompts · 6 workflow stages
Product Discovery Engine
Natural language query → structured facet extraction (category, gender, size, color, price range, style keywords, occasion), product search API integration, result ranking by relevance + inventory, and "did you mean" disambiguation
10 promptsSize & Fit Guidance
Measurement collection (chest, waist, hips, height, weight), brand-specific size chart lookup, fit preference capture (slim/regular/relaxed), material stretch factor, and "this runs small/large" brand notes
9 promptsStyle Profiling
Preference capture conversation (style words, occasions, budget, brands loved/avoided), style profile schema, profile persistence across sessions, and profile-driven recommendation re-ranking
8 promptsCart Recovery Agent
Abandoned cart trigger (time-based, exit-intent), personalized re-engagement opening (reference specific abandoned items), objection handling (price, fit uncertainty, shipping), and incentive offer logic
10 promptsCross-Sell & Upsell Intelligence
Outfit completion logic (top → bottom → shoes → accessories), bundle suggestion prompts, "frequently bought together" integration, upgrade prompts (premium version), and AOV optimization scoring
9 promptsPost-Purchase & Loyalty
Order status query handling, return initiation flow, review request timing and messaging, loyalty point balance Q&A, and referral program explanation
6 promptsWrite a production-ready system prompt for an e-commerce personal shopper AI agent for [STORE NAME], a [STORE DESCRIPTION] online retailer. The agent helps customers find products and complete purchases. Requirements: 1) Role: a knowledgeable personal shopper who knows the entire catalog, 2) Style profiling: on first interaction, ask 3 quick questions to understand the customer's style, size, and budget, 3) Product search: translate natural language queries into structured search parameters (category, size, color, price range, style keywords), 4) Recommendations: always suggest 3 options with different price points, explain why each matches their stated preferences, 5) Size guidance: proactively ask about sizing concerns, reference the brand's size chart, 6) Upsell/cross-sell: suggest complementary items naturally ("This jacket pairs well with..."), 7) Cart assistance: help customers complete checkout, answer shipping/return questions, 8) Prohibited: never pressure customers, never claim items are "almost sold out" unless inventory data confirms it. Include 3 few-shot examples.
Build a Node.js TypeScript product recommendation API for an e-commerce personal shopper agent. Endpoint: POST /api/recommendations. Input: { userId, query, styleProfile, cartItems[], budget }. Requirements: 1) Natural language parsing: extract category, color, size, price range, style keywords from the query, 2) Catalog search: full-text search against product catalog with facet filtering, 3) Personalization: boost products matching the user's style profile (past purchases, saved items, browsing history), 4) Diversity: ensure recommendations span different price points (budget, mid-range, premium), 5) Availability check: filter out out-of-stock items, 6) Response: return top 6 products with { productId, name, price, imageUrl, matchReason, sizeAvailability }, 7) Cache: cache results in Redis for 5 minutes per userId+query combination. TypeScript + Drizzle ORM. Include the product catalog schema.
Design a conversational cart recovery flow for an e-commerce AI agent. Trigger: customer has items in cart but hasn't checked out in 24 hours. The agent should: 1) Opening: acknowledge their saved cart naturally ("I noticed you left some items behind — want me to help you finish up?"), 2) Barrier identification: ask what stopped them (price concern, sizing question, shipping cost, just browsing), 3) Objection handling: for each barrier type — price concern (offer discount code if available, highlight value), sizing question (walk through size guide), shipping cost (mention free shipping threshold or current promotions), 4) Social proof: mention how many others bought the same item recently (if data available), 5) Urgency (honest only): mention if item is low stock (only if true), 6) Checkout assist: offer to walk them through checkout step by step, 7) Exit: if they decline, save their cart and offer to send a reminder email. Write as a TypeScript state machine with explicit states, transitions, and API calls.
system
10 prompts
prompts
18 prompts
workflow
14 prompts
templates
10 prompts
"The cart recovery conversation prompts — referencing specific abandoned items, handling fit uncertainty with the free returns mention, the one-follow-up-maximum rule — increased our cart recovery rate from 8% to 23%. The constraint of never offering a discount unless policy authorizes it saved us from training customers to abandon carts for discounts."
Head of Ecommerce
Fashion DTC brand, $22M ARR
"The natural language facet extraction prompt is the core of our search product. Converting "something casual for a beach wedding under $200" into structured search parameters — category, occasion, style, price range — in a single LLM call is exactly the architecture we needed."
CTO
Multi-brand ecommerce platform, 400+ brands
All 52 prompts across 6 modules are unlocked for your account.
Lifetime access