LaunchKit · 2026
Back to Skills

wolt-cli

Use Nikita's local Wolt CLI to browse venues, inspect menus/items/options, and run profile, cart.

0
355 downloads
by @mekedron

Setup & Installation

openclaw skills install @mekedron/wolt-cli

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install wolt-cli

Version History

v1.0.0Feb 22, 2026 - Version note by skill developer:

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.

INPUT

User asks: find pizza places near my saved address and show me the menu for the top result

AGENT
  1. 1Run `wolt search venues --query "pizza" --format json` to list nearby pizza venues using the profile location
  2. 2Parse `.data` from the response envelope and identify the top venue slug
  3. 3Run `wolt venue show <slug> --format json` to get venue details
  4. 4Run `wolt venue categories <slug> --format json` to list menu categories
  5. 5Run `wolt venue menu <slug> --category <category-slug> --format json` to retrieve items in the relevant category
OUTPUT

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.

Wolt account with a valid wtoken and wrtokenLocal wolt binary built from https://github.com/mekedron/wolt-cli