zomato-order
Installation
SKILL.md
Zomato Order Skill π΅
Core Principles
Ordering food through Zomato programmatically has a key constraint: Zomato has no public consumer ordering API. The only way to automate order creation is through browser automation (Playwright/Puppeteer).
The smartest approach is cookie-based session reuse:
- Phase 1 β Setup (one-time): Open a visible browser, let the user log in manually, capture session cookies
- Phase 2 β Auto-Order (reusable): Load saved cookies (auto-logged in), browse restaurants, build cart, generate payment link
This avoids OTP prompts on every order while keeping payment in the user's hands (they pay via the shared link).