{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/picnic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=picnic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "debug.mjs",
      "package-lock.json",
      "package.json",
      "picnic-cli.mjs"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/picnic",
    "agentPageUrl": "https://openagent3.xyz/skills/picnic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/picnic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/picnic/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Picnic Grocery Ordering",
        "body": "Use the picnic CLI to search products, manage shopping cart, and order groceries from Picnic."
      },
      {
        "title": "Setup (once)",
        "body": "cd {baseDir} && npm install\n\nThen login:\n\nnode {baseDir}/picnic-cli.mjs login <email> <password> DE\n\nIf 2FA is required:\n\nnode {baseDir}/picnic-cli.mjs verify-2fa <code>"
      },
      {
        "title": "Commands",
        "body": "All commands output JSON. Run from any directory:\n\n# Check login status\nnode {baseDir}/picnic-cli.mjs status\n\n# Search for products\nnode {baseDir}/picnic-cli.mjs search \"Milch\"\nnode {baseDir}/picnic-cli.mjs search \"Bio Eier\"\n\n# View cart\nnode {baseDir}/picnic-cli.mjs cart\n\n# Add to cart (productId from search results)\nnode {baseDir}/picnic-cli.mjs add <productId> [count]\n\n# Remove from cart\nnode {baseDir}/picnic-cli.mjs remove <productId> [count]\n\n# Clear cart\nnode {baseDir}/picnic-cli.mjs clear\n\n# Get available delivery slots\nnode {baseDir}/picnic-cli.mjs slots\n\n# Select a delivery slot\nnode {baseDir}/picnic-cli.mjs set-slot <slotId>\n\n# View delivery history\nnode {baseDir}/picnic-cli.mjs deliveries\n\n# Get user info\nnode {baseDir}/picnic-cli.mjs user\n\n# Browse categories\nnode {baseDir}/picnic-cli.mjs categories"
      },
      {
        "title": "Typical ordering flow",
        "body": "Search for products: search \"bananas\"\nAdd to cart: add s1234567 2\nCheck cart: cart\nGet delivery slots: slots\nSet slot: set-slot <slotId>\nConfirm with user before final checkout (checkout happens in app)"
      },
      {
        "title": "Notes",
        "body": "Config stored in ~/.config/picnic/config.json\nCountry codes: DE (Germany) or NL (Netherlands)\nProduct IDs start with 's' (e.g., s1234567)\nAlways confirm with user before modifying cart or setting delivery slots\nFinal checkout/payment must be done in the Picnic app"
      }
    ],
    "body": "Picnic Grocery Ordering\n\nUse the picnic CLI to search products, manage shopping cart, and order groceries from Picnic.\n\nSetup (once)\ncd {baseDir} && npm install\n\n\nThen login:\n\nnode {baseDir}/picnic-cli.mjs login <email> <password> DE\n\n\nIf 2FA is required:\n\nnode {baseDir}/picnic-cli.mjs verify-2fa <code>\n\nCommands\n\nAll commands output JSON. Run from any directory:\n\n# Check login status\nnode {baseDir}/picnic-cli.mjs status\n\n# Search for products\nnode {baseDir}/picnic-cli.mjs search \"Milch\"\nnode {baseDir}/picnic-cli.mjs search \"Bio Eier\"\n\n# View cart\nnode {baseDir}/picnic-cli.mjs cart\n\n# Add to cart (productId from search results)\nnode {baseDir}/picnic-cli.mjs add <productId> [count]\n\n# Remove from cart\nnode {baseDir}/picnic-cli.mjs remove <productId> [count]\n\n# Clear cart\nnode {baseDir}/picnic-cli.mjs clear\n\n# Get available delivery slots\nnode {baseDir}/picnic-cli.mjs slots\n\n# Select a delivery slot\nnode {baseDir}/picnic-cli.mjs set-slot <slotId>\n\n# View delivery history\nnode {baseDir}/picnic-cli.mjs deliveries\n\n# Get user info\nnode {baseDir}/picnic-cli.mjs user\n\n# Browse categories\nnode {baseDir}/picnic-cli.mjs categories\n\nTypical ordering flow\nSearch for products: search \"bananas\"\nAdd to cart: add s1234567 2\nCheck cart: cart\nGet delivery slots: slots\nSet slot: set-slot <slotId>\nConfirm with user before final checkout (checkout happens in app)\nNotes\nConfig stored in ~/.config/picnic/config.json\nCountry codes: DE (Germany) or NL (Netherlands)\nProduct IDs start with 's' (e.g., s1234567)\nAlways confirm with user before modifying cart or setting delivery slots\nFinal checkout/payment must be done in the Picnic app"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mpociot/picnic",
    "publisherUrl": "https://clawhub.ai/mpociot/picnic",
    "owner": "mpociot",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}