Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
wolt-cli 1.0.0
What This Skill Does
A CLI tool for interacting with Wolt from the terminal. Supports browsing venues, inspecting menus and item options, and managing cart and profile state. Checkout preview is available but the CLI does not place final orders.
Exposes Wolt's venue, cart, and profile APIs in a scriptable CLI, making automation and inspection tasks possible without reverse-engineering the web app.
When to use it
- Finding nearby restaurants on Wolt without opening a browser
- Looking up item IDs and modifier options before scripting a cart action
- Checking delivery hours for a specific venue
- Reviewing past orders and saved addresses from the command line
- Previewing checkout pricing before confirming a basket
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: find pizza places near my saved address and show me the menu for the top result
- 1Run `wolt search venues --query "pizza" --format json` to list nearby pizza venues using the profile location
- 2Parse `.data` from the response envelope and identify the top venue slug
- 3Run `wolt venue show <slug> --format json` to get venue details
- 4Run `wolt venue categories <slug> --format json` to list menu categories
- 5Run `wolt venue menu <slug> --category <category-slug> --format json` to retrieve items in the relevant category
A list of menu items with names, prices, and item IDs for the selected pizza venue
Requirements
Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.