TencentCloud VehicleLicense OCR
Analysis
This skill is a coherent Tencent Cloud vehicle-license OCR helper, but users should notice that it sends sensitive license images to Tencent Cloud and requires cloud API credentials that are not declared in the registry metadata.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
依赖:`tencentcloud-sdk-python`(通过 `pip install tencentcloud-sdk-python` 安装)
The skill relies on an external Python package installed via pip, while the supplied install specifications declare no managed install step. The package is expected for Tencent Cloud API access, but the setup is not pinned or captured by an install spec.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
环境变量: - `TENCENTCLOUD_SECRET_ID`:腾讯云API密钥ID - `TENCENTCLOUD_SECRET_KEY`:腾讯云API密钥Key
The skill needs Tencent Cloud API credentials. That is expected for this provider integration, but the registry metadata lists no required env vars or primary credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
http_profile.endpoint = "ocr.tencentcloudapi.com" ... req.ImageUrl = args.image_url ... req.ImageBase64 = load_image_base64(args.image_base64) ... resp = client.VehicleLicenseOCR(req)
The script sends either an image URL or Base64-encoded license image to Tencent Cloud's OCR endpoint. This is core to the stated OCR purpose, but vehicle licenses can contain names, addresses, plates, VINs, and other sensitive data.
