# Send wolt-cli to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wolt",
    "name": "wolt-cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mekedron/wolt",
    "canonicalUrl": "https://clawhub.ai/mekedron/wolt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wolt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wolt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/workflows.md",
      "references/command-reference.md",
      "references/output-and-errors.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wolt",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T21:42:44.352Z",
      "expiresAt": "2026-05-19T21:42:44.352Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wolt",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wolt",
        "contentDisposition": "attachment; filename=\"wolt-0.5.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wolt"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wolt"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wolt",
    "downloadUrl": "https://openagent3.xyz/downloads/wolt",
    "agentUrl": "https://openagent3.xyz/skills/wolt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wolt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wolt/agent.md"
  }
}
```
## Documentation

### Wolt CLI

Tool repository: https://github.com/mekedron/wolt-cli

Open the repository for setup/build details, then use the local wolt binary:

wolt <group> <command> [flags]

### Session Startup

Inspect command tree once per session:

wolt --help

Prefer machine output for agent work:

... --format json

Parse .data from the envelope and surface .warnings/.error to the user.

### Safety Rules

Start read-only by default.
Request explicit confirmation before mutating commands:

cart add, cart remove, cart clear
profile favorites add, profile favorites remove
profile addresses add, profile addresses update, profile addresses remove, profile addresses use
configure (writes local profile credentials)


Never describe checkout preview as order placement. The CLI does not place final orders.

### Auth Workflow

Use explicit profile names to avoid ambiguity:

wolt configure --profile-name default --wtoken "<token>" --wrtoken "<refresh-token>" --overwrite
wolt profile status --profile default --format json --verbose

Credential fallback for authenticated commands:

Explicit flags (--wtoken, --wrtoken, --cookie)
Selected profile auth fields
Default profile auth fields

When refresh credentials are available, expired/401 access tokens are refreshed automatically and persisted back to local config.

### Location Rules

Apply exactly:

Use either --address "<text>" or both --lat + --lon.
Do not combine --address with --lat/--lon.
If no override is passed, profile location is used.
search venues/items and venue show/hours use --address or profile location (no direct --lat/--lon flags).
discover, cart, checkout preview, and profile favorites support --lat/--lon.

### Command Selection

Explore nearby options: discover feed, discover categories, search venues, search items
Inspect one venue deeply: venue show, venue categories, venue search, venue menu, venue hours
Resolve one item/options for basket actions: item show, item options
Basket and pricing: cart count/show/add/remove/clear, then checkout preview
Account and history: profile show/status/orders/payments/addresses/favorites

For large marketplace venues, prefer:

venue search <slug> --query "<text>"
venue menu <slug> --category <category-slug>

instead of unrestricted full-catalog menu crawl.

### Output and Diagnostics

--format json|yaml returns envelope keys: meta, data, warnings, optional error.
On upstream failures, rerun with --verbose to capture request trace and detailed diagnostics.

### References

Full command and flag matrix: references/command-reference.md
Reusable high-confidence workflows: references/workflows.md
Envelope/error parsing and automation notes: references/output-and-errors.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mekedron
- Version: 0.5.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T21:42:44.352Z
- Expires at: 2026-05-19T21:42:44.352Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wolt)
- [Send to Agent page](https://openagent3.xyz/skills/wolt/agent)
- [JSON manifest](https://openagent3.xyz/skills/wolt/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wolt/agent.md)
- [Download page](https://openagent3.xyz/downloads/wolt)