Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

qrcode-decode二维码解码

Agent Skill

qrcode-decode 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,305

周安装

135

GitHub Stars

公开资料未说明

下载量

1,069
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qrcode-decode(二维码解码)
来源仓库:https://github.com/edwincen/qrcode-decode
安装命令:
openclaw skills install qrcode-decode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install qrcode-decode

简介

qrcode-decode 可从图像中提取 QR 码或条形码内容,适用于解码屏幕截图或照片中的二维码。

  • 适合在 OpenClaw 中需要把零散视觉信息整理成结构清晰结果时使用。
  • 通过 clawhub 安装,命令为 openclaw skills install qrcode-decode,用法见来源仓库 README。
  • 安装前应确认权限范围和维护状态,注意可能涉及图像文件读取和网络请求。
  • 建议核对原始文档了解支持的图像格式和解码精度后再使用。

SKILL.md

name
qrcode-detect
description
Use when you need to extract QR code or barcode content from an image — given a screenshot, photo URL, or local image file containing a QR code, DataMatrix, or barcode that needs to be read and decoded
version
0.1.0
author
cli.im
tags
[qrcode, barcode, image, detection, datamatrix, decode]

QR Code Detection & Decoding

Detect and decode QR codes from images via a single API call. Input an image (URL or base64), get structured output: decoded content, content type classification, position, and confidence.

When to Use

  • You have a screenshot or photo and need to extract the QR code content
  • A workflow requires reading a QR code from an image URL
  • You need to classify what a QR code contains (URL, WiFi config, vCard, email, etc.)
  • You need to batch-process multiple images for QR code extraction

API

Endpoint: POST https://data.cli.im/x-deepscan/vision/detect

Content-Type: application/json

Input — pick one

# From URL (simplest)
curl -s -X POST https://data.cli.im/x-deepscan/vision/detect \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/photo-with-qrcode.jpg"}'

# From local file (base64)
curl -s -X POST https://data.cli.im/x-deepscan/vision/detect \
  -H "Content-Type: application/json" \
  -d "{\"image\": \"$(base64 -i photo.jpg)\"}"

# Batch
curl -s -X POST https://data.cli.im/x-deepscan/vision/detect \
  -H "Content-Type: application/json" \
  -d '{"urls": ["https://example.com/1.jpg", "https://example.com/2.jpg"]}'

Output

Single image returns:

{
  "count": 1,
  "codes": [
    {
      "content": "https://example.com",
      "format": "QR Code",
      "content_type": "url",
      "bbox": {"x1": 211.8, "y1": 211.3, "x2": 425.8, "y2": 424.7},
      "keypoints": null,
      "confidence": 0.93
    }
  ]
}

No QR code found returns {"count": 0, "codes": []} — not an error.

Content Type Classification

content_type is auto-classified:

ValueMatches
urlhttp:// or https:// prefix
wifiWIFI: prefix
vcardBEGIN:VCARD prefix
emailmailto: prefix
phonetel: prefix
smssms: prefix
geogeo: prefix
textEverything else

Request Fields Reference

All fields optional, but at least one required:

FieldTypeDescription
imagestringBase64-encoded image
urlstringImage URL (http/https only)
imagesstring[]Batch base64 (max 10)
urlsstring[]Batch URLs (max 10)

Single input (image or url alone) returns DetectResponse. Batch/mixed returns BatchDetectResponse with per-item results.

Error Handling

Errors return {"error": {"code": "...", "message": "..."}}.

CodeWhen
INVALID_BASE64Base64 decoding failed
INVALID_URLBad URL or SSRF blocked (private IP)
URL_NOT_IMAGEURL content is not an image
URL_DOWNLOAD_FAILEDDownload timeout or HTTP error
IMAGE_TOO_LARGEExceeds 10MB
RATE_LIMITEDToo many requests (check Retry-After header)
BATCH_TOO_LARGEMore than 10 images

Rate Limits

Free usage: 20 requests/minute, 200 requests/day per IP.

Limitations

  • Optimized for 2D codes (QR Code, DataMatrix). 1D barcode detection (EAN-13, Code128) is weak in complex backgrounds.
  • Max image size: 10MB. Supports JPEG, PNG, GIF, WebP, BMP.
  • URL input has SSRF protection — private/internal network URLs are blocked.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.18%
按下载量换算1,050

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills