{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qrdex",
    "name": "QRdex",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sebastienb/qrdex",
    "canonicalUrl": "https://clawhub.ai/sebastienb/qrdex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/qrdex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qrdex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/API_REFERENCE.md",
      "scripts/qrdex_api.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/qrdex"
    },
    "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/qrdex",
    "agentPageUrl": "https://openagent3.xyz/skills/qrdex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qrdex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qrdex/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": "QRdex",
        "body": "Manage QR codes via the QRdex.io REST API."
      },
      {
        "title": "Setup",
        "body": "Set the API key as an environment variable:\n\nexport QRDEX_API_KEY=\"your-api-key\"\n\nGet a key from: QRdex.io → Team Settings → API section.\nAPI access requires Growth plan or above."
      },
      {
        "title": "Quick Reference",
        "body": "Base URL: https://qrdex.io/api/v1\n\nAll requests require Authorization: Bearer $QRDEX_API_KEY and Content-Type: application/json."
      },
      {
        "title": "Create a QR Code",
        "body": "curl -X POST https://qrdex.io/api/v1/qr_codes \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"qr_code\": {\n      \"title\": \"My Website\",\n      \"qr_type\": \"url\",\n      \"url\": \"https://example.com\"\n    }\n  }'"
      },
      {
        "title": "QR Types and Required Fields",
        "body": "TypeRequired Fieldsurlurlemailemail_address (optional: email_subject, message)telephonetelephone_numbersmstelephone_number (optional: message)whatsapptelephone_number (optional: message)wifiwifi_ssid (optional: wifi_encryption, wifi_password, wifi_hidden)"
      },
      {
        "title": "Common Optional Fields",
        "body": "foreground_color — hex color (default: #000000)\nbackground_color — hex color (default: #FFFFFF)\nshape — QR code shape (default: rounded)\ntrack_scans — enable scan tracking (default: true)"
      },
      {
        "title": "List QR Codes",
        "body": "curl https://qrdex.io/api/v1/qr_codes \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\"\n\nQuery params: page, per_page (max 100), qr_type filter."
      },
      {
        "title": "Get / Update / Delete",
        "body": "# Get\ncurl https://qrdex.io/api/v1/qr_codes/:id -H \"Authorization: Bearer $QRDEX_API_KEY\"\n\n# Update (partial — only send changed fields)\ncurl -X PATCH https://qrdex.io/api/v1/qr_codes/:id \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"qr_code\": {\"title\": \"New Title\"}}'\n\n# Delete (soft-delete)\ncurl -X DELETE https://qrdex.io/api/v1/qr_codes/:id -H \"Authorization: Bearer $QRDEX_API_KEY\""
      },
      {
        "title": "Download QR Image (SVG)",
        "body": "curl https://qrdex.io/api/v1/qr_codes/:id/image \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" -o qr.svg\n\nReturns image/svg+xml. Use the image_url field from any QR code response directly in <img> tags."
      },
      {
        "title": "Using the Python Script",
        "body": "For programmatic use, use scripts/qrdex_api.py:\n\n# Set API key\nexport QRDEX_API_KEY=\"your-key\"\n\n# List QR codes\npython scripts/qrdex_api.py list\n\n# Create QR codes\npython scripts/qrdex_api.py create --title \"My Site\" --type url --url \"https://example.com\"\npython scripts/qrdex_api.py create --title \"WiFi\" --type wifi --ssid \"Guest\" --wifi-password \"pass123\"\npython scripts/qrdex_api.py create --title \"Email\" --type email --email \"hi@example.com\"\npython scripts/qrdex_api.py create --title \"Chat\" --type whatsapp --phone \"+15551234567\" --message \"Hello!\"\n\n# Get details\npython scripts/qrdex_api.py get 123\n\n# Update\npython scripts/qrdex_api.py update 123 --title \"Updated Title\" --fg-color \"#FF0000\"\n\n# Delete\npython scripts/qrdex_api.py delete 123\n\n# Download image\npython scripts/qrdex_api.py image 123 -o qr.svg"
      },
      {
        "title": "Error Handling",
        "body": "401 — Invalid/missing API key\n403 — No permission\n404 — QR code not found or belongs to different team\n422 — Validation error or plan limit reached\n429 — Rate limited (100 req/min per key). Check X-RateLimit-Remaining header."
      },
      {
        "title": "API Reference",
        "body": "For full field descriptions and response schemas, see references/API_REFERENCE.md."
      }
    ],
    "body": "QRdex\n\nManage QR codes via the QRdex.io REST API.\n\nSetup\n\nSet the API key as an environment variable:\n\nexport QRDEX_API_KEY=\"your-api-key\"\n\n\nGet a key from: QRdex.io → Team Settings → API section. API access requires Growth plan or above.\n\nQuick Reference\n\nBase URL: https://qrdex.io/api/v1\n\nAll requests require Authorization: Bearer $QRDEX_API_KEY and Content-Type: application/json.\n\nCreate a QR Code\ncurl -X POST https://qrdex.io/api/v1/qr_codes \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"qr_code\": {\n      \"title\": \"My Website\",\n      \"qr_type\": \"url\",\n      \"url\": \"https://example.com\"\n    }\n  }'\n\nQR Types and Required Fields\nType\tRequired Fields\nurl\turl\nemail\temail_address (optional: email_subject, message)\ntelephone\ttelephone_number\nsms\ttelephone_number (optional: message)\nwhatsapp\ttelephone_number (optional: message)\nwifi\twifi_ssid (optional: wifi_encryption, wifi_password, wifi_hidden)\nCommon Optional Fields\nforeground_color — hex color (default: #000000)\nbackground_color — hex color (default: #FFFFFF)\nshape — QR code shape (default: rounded)\ntrack_scans — enable scan tracking (default: true)\nList QR Codes\ncurl https://qrdex.io/api/v1/qr_codes \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\"\n\n\nQuery params: page, per_page (max 100), qr_type filter.\n\nGet / Update / Delete\n# Get\ncurl https://qrdex.io/api/v1/qr_codes/:id -H \"Authorization: Bearer $QRDEX_API_KEY\"\n\n# Update (partial — only send changed fields)\ncurl -X PATCH https://qrdex.io/api/v1/qr_codes/:id \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"qr_code\": {\"title\": \"New Title\"}}'\n\n# Delete (soft-delete)\ncurl -X DELETE https://qrdex.io/api/v1/qr_codes/:id -H \"Authorization: Bearer $QRDEX_API_KEY\"\n\nDownload QR Image (SVG)\ncurl https://qrdex.io/api/v1/qr_codes/:id/image \\\n  -H \"Authorization: Bearer $QRDEX_API_KEY\" -o qr.svg\n\n\nReturns image/svg+xml. Use the image_url field from any QR code response directly in <img> tags.\n\nUsing the Python Script\n\nFor programmatic use, use scripts/qrdex_api.py:\n\n# Set API key\nexport QRDEX_API_KEY=\"your-key\"\n\n# List QR codes\npython scripts/qrdex_api.py list\n\n# Create QR codes\npython scripts/qrdex_api.py create --title \"My Site\" --type url --url \"https://example.com\"\npython scripts/qrdex_api.py create --title \"WiFi\" --type wifi --ssid \"Guest\" --wifi-password \"pass123\"\npython scripts/qrdex_api.py create --title \"Email\" --type email --email \"hi@example.com\"\npython scripts/qrdex_api.py create --title \"Chat\" --type whatsapp --phone \"+15551234567\" --message \"Hello!\"\n\n# Get details\npython scripts/qrdex_api.py get 123\n\n# Update\npython scripts/qrdex_api.py update 123 --title \"Updated Title\" --fg-color \"#FF0000\"\n\n# Delete\npython scripts/qrdex_api.py delete 123\n\n# Download image\npython scripts/qrdex_api.py image 123 -o qr.svg\n\nError Handling\n401 — Invalid/missing API key\n403 — No permission\n404 — QR code not found or belongs to different team\n422 — Validation error or plan limit reached\n429 — Rate limited (100 req/min per key). Check X-RateLimit-Remaining header.\nAPI Reference\n\nFor full field descriptions and response schemas, see references/API_REFERENCE.md."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sebastienb/qrdex",
    "publisherUrl": "https://clawhub.ai/sebastienb/qrdex",
    "owner": "sebastienb",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qrdex",
    "downloadUrl": "https://openagent3.xyz/downloads/qrdex",
    "agentUrl": "https://openagent3.xyz/skills/qrdex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qrdex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qrdex/agent.md"
  }
}