Build a shopping list
build_shopping_listCompose a consolidated grocery list from 1-8 recipes in the collection and hand it off for shopping — nothing is stored; the list is an artifact of this conversation. ALWAYS call with mode 'propose' first and show the user the returned list. Only after they explicitly approve in a LATER turn may you call a send mode: 'cart' (adds the items to their own linked Kroger-family cart — Fred Meyer, Mariano's, Ralphs… — requires the grocery:cart permission; asks them to connect their Kroger account the first time), 'coupons' (Pete's Fresh COUPON mode — clips this week's matching specials to their loyalty card; it can ONLY match items currently on coupon, so most items staying unmatched is normal; same grocery:cart permission) or 'email' (mails them the list, forwardable to whoever shops — requires the email:send permission). NEVER propose and send in the same turn. Pass pantry staples they keep in 'exclude'. recipe_ids MUST be copied exactly from search_recipes or list_conceits results — never invented.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| zip | No | cart mode: US zip for first-time store selection. Only needed when the tool asks for it — the store is picked from the user's location when that is known, and remembered after. | |
| mode | Yes | propose = show the consolidated list in chat (always first); cart = add items to the user's Kroger cart (only after the user approved the proposal in a previous turn); coupons = clip matching Pete's Fresh weekly specials to the user's loyalty card (same approval rule; coupon-only — most items won't match); email = send the proposal email (same approval rule); link = create the Instacart page now (same approval rule). | |
| title | No | Optional list title in the user's words, e.g. "Sunday dinner with Ramona". | |
| exclude | No | Ingredients to leave off — pantry staples the user keeps, or items they said to drop. Plain names, e.g. "soy sauce". | |
| recipe_ids | Yes | 1-8 recipe point ids, exactly as returned by your tools. |