试验图片数据提取
PassAudited by ClawScan on May 10, 2026.
Overview
The skill matches its stated image-table extraction purpose, but users should know it uploads the selected image to a Ketop API and needs a Ketop API key.
Before using this skill, confirm that the image can be shared with Ketop's API, provide KETOP_KEY_TOKEN only via a secure environment/secret mechanism, and verify whether the automatic removal of "pass" or "通过" cells is appropriate for your data.
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.
Images may contain private or business data and will be sent to a third-party service for processing.
The selected image file is uploaded to an external Ketop API with an API key. This is consistent with the OCR/table-extraction purpose, but it means image contents leave the local environment.
url = "https://kpp.ketop.cn/Api/KpAiImgTbApi?act=imgtb"
header = {
"X-API-Key": f"{ketop_key}"
}
response = requests.post(url,headers=header,files=files)Use this only for images you are comfortable sending to Ketop, and review that provider's privacy and retention terms.
A Ketop API key may be requested and used on the user's behalf.
The skill expects a Ketop access key and suggests saving it. Provider credentials are expected for this integration, but users should handle the key carefully.
检查是否存在访问密钥KETOP_KEY_TOKEN,如果没有密钥,提示用户向开普检测申请密钥,并等带用户提供密钥,获得有效密钥并保存
Provide the key only through a secure environment variable or approved secret store, avoid placing it in chat, and revoke it if no longer needed.
If allowed, the agent may run the helper script against the image path the user provides.
The skill documents running an included local Python helper script. This is central to the skill's purpose and the script is short and readable, but it is still local code execution.
python scripts/imgread.py -f imgpath
Allow execution only for the intended image file and review the helper script before use in sensitive environments.
