# Send Listonic 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "listonic",
    "name": "Listonic",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/JeremyMahieu/listonic",
    "canonicalUrl": "https://clawhub.ai/JeremyMahieu/listonic",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/listonic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=listonic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "scripts/listonic.py",
      "scripts/listonic.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "listonic",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:24:42.175Z",
      "expiresAt": "2026-05-07T10:24:42.175Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=listonic",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=listonic",
        "contentDisposition": "attachment; filename=\"listonic-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "listonic"
      },
      "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/listonic"
    },
    "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/listonic",
    "downloadUrl": "https://openagent3.xyz/downloads/listonic",
    "agentUrl": "https://openagent3.xyz/skills/listonic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/listonic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/listonic/agent.md"
  }
}
```
## Documentation

### Listonic

Manage Listonic shopping lists via the unofficial web API.

### Setup

Create ~/.openclaw/credentials/listonic/config.json using one auth mode.

### Recommended: token mode (works with Google sign-in)

{
  "refreshToken": "your-refresh-token"
}

Tip: the script now auto-refreshes access tokens and persists updated tokens back to config.
It also accepts refresh_token / access_token keys if you paste raw OAuth payload JSON.

Optional (advanced):

{
  "accessToken": "short-lived-access-token",
  "clientId": "listonicv2",
  "clientSecret": "fjdfsoj9874jdfhjkh34jkhffdfff",
  "redirectUri": "https://listonicv2api.jestemkucharzem.pl"
}

### Fallback: email/password mode

{
  "email": "you@example.com",
  "password": "your-listonic-password"
}

### Workflow

lists to show available shopping lists
items <list> to inspect current items
add-item <list> "Name" to add items
check-item / uncheck-item to toggle completion
delete-item only when user explicitly wants removal

### Important

This uses an unofficial reverse-engineered API and may break if Listonic changes it.
For destructive operations (delete-item, delete-list), confirm with the user first.
list arguments can be list ID or a list name (exact/partial match).

### Show all lists

bash scripts/listonic.sh lists

### Show items in a list

bash scripts/listonic.sh items 12345
bash scripts/listonic.sh items "Groceries"

### Add item

bash scripts/listonic.sh add-item "Groceries" "Milk"
bash scripts/listonic.sh add-item "Groceries" "Flour" --amount 2 --unit kg

### Check / uncheck item

bash scripts/listonic.sh check-item "Groceries" 987654
bash scripts/listonic.sh uncheck-item "Groceries" 987654

### Delete item

bash scripts/listonic.sh delete-item "Groceries" 987654

### Create / rename / delete list

bash scripts/listonic.sh add-list "BBQ Party"
bash scripts/listonic.sh rename-list "BBQ Party" "BBQ"
bash scripts/listonic.sh delete-list "BBQ"

### Raw JSON output

bash scripts/listonic.sh --json lists
bash scripts/listonic.sh --json items "Groceries"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JeremyMahieu
- Version: 1.0.1
## 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-04-30T10:24:42.175Z
- Expires at: 2026-05-07T10:24:42.175Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/listonic)
- [Send to Agent page](https://openagent3.xyz/skills/listonic/agent)
- [JSON manifest](https://openagent3.xyz/skills/listonic/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/listonic/agent.md)
- [Download page](https://openagent3.xyz/downloads/listonic)