{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-1",
    "name": "Skill 1",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/claudiodrusus/skill-1",
    "canonicalUrl": "https://clawhub.ai/claudiodrusus/skill-1",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skill-1",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-1",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "PUBLISH-LOG.md",
      "SKILL.md",
      "scripts/generate_qr.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",
      "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/skill-1"
    },
    "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/skill-1",
    "agentPageUrl": "https://openagent3.xyz/skills/skill-1/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-1/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-1/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 Generator",
        "body": "Generate QR codes via the bundled Python script."
      },
      {
        "title": "Quick Start",
        "body": "python3 scripts/generate_qr.py \"https://example.com\" -o qr.png"
      },
      {
        "title": "URL or text",
        "body": "python3 scripts/generate_qr.py \"https://example.com\" -o link.png"
      },
      {
        "title": "WiFi network (scannable by phones)",
        "body": "python3 scripts/generate_qr.py \"wifi\" --wifi-ssid \"MyNetwork\" --wifi-pass \"secret123\" -o wifi.png"
      },
      {
        "title": "vCard contact",
        "body": "Generate the vCard string and pipe it:\n\npython3 scripts/generate_qr.py \"BEGIN:VCARD\nVERSION:3.0\nFN:Jane Smith\nTEL:+1234567890\nEMAIL:jane@example.com\nEND:VCARD\" -o contact.png"
      },
      {
        "title": "ASCII art (terminal preview)",
        "body": "python3 scripts/generate_qr.py \"hello\" --format ascii"
      },
      {
        "title": "SVG (scalable, web-friendly)",
        "body": "python3 scripts/generate_qr.py \"data\" -o code.svg"
      },
      {
        "title": "Options",
        "body": "-o FILE — output path (default: qr.png)\n-s N — box size in pixels (default: 10)\n--border N — border width (default: 4)\n--format png|svg|ascii — force format (auto-detected from extension)\n--error-correction L|M|Q|H — error correction level (default: M; use H for logos/damage tolerance)"
      },
      {
        "title": "Dependencies",
        "body": "The script auto-installs qrcode[pil] via pip if missing. No manual setup needed."
      }
    ],
    "body": "QR Code Generator\n\nGenerate QR codes via the bundled Python script.\n\nQuick Start\npython3 scripts/generate_qr.py \"https://example.com\" -o qr.png\n\nCommon Patterns\nURL or text\npython3 scripts/generate_qr.py \"https://example.com\" -o link.png\n\nWiFi network (scannable by phones)\npython3 scripts/generate_qr.py \"wifi\" --wifi-ssid \"MyNetwork\" --wifi-pass \"secret123\" -o wifi.png\n\nvCard contact\n\nGenerate the vCard string and pipe it:\n\npython3 scripts/generate_qr.py \"BEGIN:VCARD\nVERSION:3.0\nFN:Jane Smith\nTEL:+1234567890\nEMAIL:jane@example.com\nEND:VCARD\" -o contact.png\n\nASCII art (terminal preview)\npython3 scripts/generate_qr.py \"hello\" --format ascii\n\nSVG (scalable, web-friendly)\npython3 scripts/generate_qr.py \"data\" -o code.svg\n\nOptions\n-o FILE — output path (default: qr.png)\n-s N — box size in pixels (default: 10)\n--border N — border width (default: 4)\n--format png|svg|ascii — force format (auto-detected from extension)\n--error-correction L|M|Q|H — error correction level (default: M; use H for logos/damage tolerance)\nDependencies\n\nThe script auto-installs qrcode[pil] via pip if missing. No manual setup needed."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/claudiodrusus/skill-1",
    "publisherUrl": "https://clawhub.ai/claudiodrusus/skill-1",
    "owner": "claudiodrusus",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-1",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-1",
    "agentUrl": "https://openagent3.xyz/skills/skill-1/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-1/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-1/agent.md"
  }
}