{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qr-code-pro",
    "name": "Advanced QR Intelligence",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/Omar-Khaleel/qr-code-pro",
    "canonicalUrl": "https://clawhub.ai/Omar-Khaleel/qr-code-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/qr-code-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-code-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CLAUDE.md",
      "SKILL.md",
      "scripts/qr_generate.py",
      "scripts/qr_read.py"
    ],
    "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",
      "slug": "qr-code-pro",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-24T08:04:36.469Z",
      "expiresAt": "2026-05-01T08:04:36.469Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-code-pro",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-code-pro",
        "contentDisposition": "attachment; filename=\"qr-code-pro-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qr-code-pro"
      },
      "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/qr-code-pro"
    },
    "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/qr-code-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/qr-code-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qr-code-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qr-code-pro/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": "QR Code",
        "body": "Generate QR codes from text/URLs and decode QR codes from images."
      },
      {
        "title": "Capabilities",
        "body": "Generate QR codes from any text, URL, or data\nCustomize QR code size and error correction level\nSave as PNG or display in terminal\nRead/decode QR codes from image files (PNG, JPG, etc.)\nRead QR codes from screenshots"
      },
      {
        "title": "Requirements",
        "body": "Install Python dependencies:"
      },
      {
        "title": "For Generation",
        "body": "pip install qrcode pillow"
      },
      {
        "title": "For Reading",
        "body": "pip install pillow pyzbar\n\nOn Windows, pyzbar requires Visual C++ Redistributable.\nOn macOS: brew install zbar\nOn Linux: apt install libzbar0"
      },
      {
        "title": "Generate QR Code",
        "body": "python scripts/qr_generate.py \"https://example.com\" output.png\n\nOptions:\n\n--size: Box size in pixels (default: 10)\n--border: Border size in boxes (default: 4)\n--error: Error correction level L/M/Q/H (default: M)\n\nExample with options:\n\npython scripts/qr_generate.py \"Hello World\" hello.png --size 15 --border 2"
      },
      {
        "title": "Read QR Code",
        "body": "python scripts/qr_read.py image.png\n\nReturns the decoded text/URL from the QR code."
      },
      {
        "title": "Quick Examples",
        "body": "Generate QR for a URL:\n\nimport qrcode\nimg = qrcode.make(\"https://openclaw.ai\")\nimg.save(\"openclaw.png\")\n\nRead QR from image:\n\nfrom pyzbar.pyzbar import decode\nfrom PIL import Image\ndata = decode(Image.open(\"qr.png\"))\nprint(data[0].data.decode())"
      },
      {
        "title": "Scripts",
        "body": "scripts/qr_generate.py - Generate QR codes with customization options\nscripts/qr_read.py - Decode QR codes from image files"
      }
    ],
    "body": "QR Code\n\nGenerate QR codes from text/URLs and decode QR codes from images.\n\nCapabilities\nGenerate QR codes from any text, URL, or data\nCustomize QR code size and error correction level\nSave as PNG or display in terminal\nRead/decode QR codes from image files (PNG, JPG, etc.)\nRead QR codes from screenshots\nRequirements\n\nInstall Python dependencies:\n\nFor Generation\npip install qrcode pillow\n\nFor Reading\npip install pillow pyzbar\n\n\nOn Windows, pyzbar requires Visual C++ Redistributable. On macOS: brew install zbar On Linux: apt install libzbar0\n\nGenerate QR Code\npython scripts/qr_generate.py \"https://example.com\" output.png\n\n\nOptions:\n\n--size: Box size in pixels (default: 10)\n--border: Border size in boxes (default: 4)\n--error: Error correction level L/M/Q/H (default: M)\n\nExample with options:\n\npython scripts/qr_generate.py \"Hello World\" hello.png --size 15 --border 2\n\nRead QR Code\npython scripts/qr_read.py image.png\n\n\nReturns the decoded text/URL from the QR code.\n\nQuick Examples\n\nGenerate QR for a URL:\n\nimport qrcode\nimg = qrcode.make(\"https://openclaw.ai\")\nimg.save(\"openclaw.png\")\n\n\nRead QR from image:\n\nfrom pyzbar.pyzbar import decode\nfrom PIL import Image\ndata = decode(Image.open(\"qr.png\"))\nprint(data[0].data.decode())\n\nScripts\nscripts/qr_generate.py - Generate QR codes with customization options\nscripts/qr_read.py - Decode QR codes from image files"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Omar-Khaleel/qr-code-pro",
    "publisherUrl": "https://clawhub.ai/Omar-Khaleel/qr-code-pro",
    "owner": "Omar-Khaleel",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qr-code-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/qr-code-pro",
    "agentUrl": "https://openagent3.xyz/skills/qr-code-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qr-code-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qr-code-pro/agent.md"
  }
}