# Send Picnic Grocery 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": "picnic",
    "name": "Picnic Grocery",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mpociot/picnic",
    "canonicalUrl": "https://clawhub.ai/mpociot/picnic",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/picnic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=picnic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "debug.mjs",
      "package-lock.json",
      "package.json",
      "picnic-cli.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "picnic",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T01:49:08.156Z",
      "expiresAt": "2026-05-14T01:49:08.156Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=picnic",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=picnic",
        "contentDisposition": "attachment; filename=\"picnic-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "picnic"
      },
      "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/picnic"
    },
    "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/picnic",
    "downloadUrl": "https://openagent3.xyz/downloads/picnic",
    "agentUrl": "https://openagent3.xyz/skills/picnic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/picnic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/picnic/agent.md"
  }
}
```
## Documentation

### Picnic Grocery Ordering

Use the picnic CLI to search products, manage shopping cart, and order groceries from Picnic.

### Setup (once)

cd {baseDir} && npm install

Then login:

node {baseDir}/picnic-cli.mjs login <email> <password> DE

If 2FA is required:

node {baseDir}/picnic-cli.mjs verify-2fa <code>

### Commands

All commands output JSON. Run from any directory:

# Check login status
node {baseDir}/picnic-cli.mjs status

# Search for products
node {baseDir}/picnic-cli.mjs search "Milch"
node {baseDir}/picnic-cli.mjs search "Bio Eier"

# View cart
node {baseDir}/picnic-cli.mjs cart

# Add to cart (productId from search results)
node {baseDir}/picnic-cli.mjs add <productId> [count]

# Remove from cart
node {baseDir}/picnic-cli.mjs remove <productId> [count]

# Clear cart
node {baseDir}/picnic-cli.mjs clear

# Get available delivery slots
node {baseDir}/picnic-cli.mjs slots

# Select a delivery slot
node {baseDir}/picnic-cli.mjs set-slot <slotId>

# View delivery history
node {baseDir}/picnic-cli.mjs deliveries

# Get user info
node {baseDir}/picnic-cli.mjs user

# Browse categories
node {baseDir}/picnic-cli.mjs categories

### Typical ordering flow

Search for products: search "bananas"
Add to cart: add s1234567 2
Check cart: cart
Get delivery slots: slots
Set slot: set-slot <slotId>
Confirm with user before final checkout (checkout happens in app)

### Notes

Config stored in ~/.config/picnic/config.json
Country codes: DE (Germany) or NL (Netherlands)
Product IDs start with 's' (e.g., s1234567)
Always confirm with user before modifying cart or setting delivery slots
Final checkout/payment must be done in the Picnic app
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mpociot
- Version: 1.0.0
## 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-07T01:49:08.156Z
- Expires at: 2026-05-14T01:49:08.156Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/picnic)
- [Send to Agent page](https://openagent3.xyz/skills/picnic/agent)
- [JSON manifest](https://openagent3.xyz/skills/picnic/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/picnic/agent.md)
- [Download page](https://openagent3.xyz/downloads/picnic)