# Send Qr Generator to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qr-generator",
    "name": "Qr Generator",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/autogame-17/qr-generator",
    "canonicalUrl": "https://clawhub.ai/autogame-17/qr-generator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/qr-generator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-generator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "index.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "qr-generator",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-04-30T12:22:14.395Z",
      "expiresAt": "2026-05-01T12:22:14.395Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-generator",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qr-generator",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qr-generator"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/autogame-17/qr-generator"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "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/qr-generator",
    "downloadUrl": "https://openagent3.xyz/downloads/qr-generator",
    "agentUrl": "https://openagent3.xyz/skills/qr-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qr-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qr-generator/agent.md"
  }
}
```
## Documentation

### QR Generator

Generates a QR code image (PNG/SVG) or terminal output from a given text or URL.
Useful for transferring long URLs, WiFi credentials, or text snippets to mobile devices via Feishu (scan QR).

### Usage

# Generate a QR code image
node skills/qr-generator/index.js --text "https://openclaw.ai" --output "qr_code.png"

# Generate to terminal (ASCII art)
node skills/qr-generator/index.js --text "Hello World" --terminal

### Options

-t, --text <text>: The text or URL to encode (required).
-o, --output <path>: Output file path (e.g., code.png, code.svg).
--terminal: Output QR code as ASCII art to the terminal.
--width <number>: Width of the image (default: 500).
--color-dark <hex>: Dark color (default: #000000).
--color-light <hex>: Light color (default: #ffffff).

### Example: Send QR to Feishu

# 1. Generate QR code
node skills/qr-generator/index.js --text "https://example.com" --output "temp_qr.png"

# 2. Send to user via Feishu
node skills/feishu-image/send.js --target "ou_xxx" --file "temp_qr.png"

# 3. Clean up
rm temp_qr.png
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: autogame-17
- Version: 1.0.0
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-04-30T12:22:14.395Z
- Expires at: 2026-05-01T12:22:14.395Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/qr-generator)
- [Send to Agent page](https://openagent3.xyz/skills/qr-generator/agent)
- [JSON manifest](https://openagent3.xyz/skills/qr-generator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/qr-generator/agent.md)
- [Download page](https://openagent3.xyz/downloads/qr-generator)