Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-instacart Install via the SkillsCat registry.
About this skill
This skill enables agents to search and browse grocery products on Instacart, access store-specific catalogs by retailer and department, and check nearby store delivery availability by postal code. It is useful for building grocery shopping or delivery workflows that require product discovery and delivery feasibility checks.
SKILL.md
Instacart
Overview
Grocery delivery marketplace. Archetype: Food Delivery.
Workflows
Search groceries
searchProducts(query)→ products with name, price, brand, availability
Browse a store's catalog
getStoreProducts(retailerSlug, slug)→ products in a departmentretailerSlugis a known store slug (e.g. "costco", "sprouts", "publix")slugis a category (e.g. "produce", "dairy", "snacks")
Check delivery availability
getNearbyStores(postalCode)→ stores withretailerId, delivery ETAs
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchProducts | search groceries by keyword | query | products (name, price, brand, availability) | entry point; returns autocomplete suggestions too |
| getStoreProducts | browse a store department | retailerSlug (known slug), slug (category) | products (name, price, brand), collection info | auto-resolves shopId; entry point |
| getNearbyStores | find stores with delivery ETAs | postalCode | stores (retailerId, etaMinutes, etaDisplay) | entry point; results depend on IP geolocation |
Quick Start
# Search for groceries
openweb instacart exec searchProducts '{"query": "bananas", "limit": 5}'
# Browse Costco produce
openweb instacart exec getStoreProducts '{"retailerSlug": "costco", "slug": "produce", "first": 10}'
# Find nearby stores
openweb instacart exec getNearbyStores '{"postalCode": "90210"}'