recipe-to-cart
Recipe to Cart
Add all product-linked items from saved recipes directly to the user's cart. Supports multiple recipes in one command with automatic deduplication — shared items (like milk across "Weekly Staples" and "Taco Tuesday") are only added once.
Important: Cart Limitations
The Kroger API is write-only for cart operations. This CLI can add items to the cart but cannot read or verify cart contents. Always remind the user to review their cart on the store website before checkout.
Commands
# Add a single recipe to cart
grocer-cli cart add-recipe 1
# Add multiple recipes (duplicates skipped automatically)
grocer-cli cart add-recipe 1 2 3
# Skip pantry check
grocer-cli cart add-recipe 1 2 --no-check
More from sieteunoseis/grocer-cli
shelf-life-check
Check and update shelf life estimates for pantry items using USDA FoodKeeper, StillTasty, and FDA guidelines. Use when a user wants to verify expiration estimates, check freshness dates, or get more accurate best-by dates for their groceries.
1find-store
Find store locations near a given zip code and optionally set the closest one as the preferred store. Use when a user wants to locate nearby stores, pick a store for pricing and availability, or change their preferred store location.
1kroger-search
Search for grocery products by keyword and return matching results with product IDs, descriptions, and prices. Use when a user wants to find grocery products, compare prices, or look up items available at their local store.
1