夸克扫描王 转Office - yescan transoffice universal
Analysis
The skill appears purpose-aligned for converting user-provided images through Quark's OCR service, but it requires an API key, uploads images to Quark, and leaves converted files in temporary storage until cleaned.
Findings (4)
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.
python3 scripts/scan.py --scene "${SCENE_VALUE}" --path "${IMAGE_FILE_PATH}" ... 直接执行命令,不增删任何参数The skill directs the agent to run a local Python command using the user-provided URL, file path, or base64 image input. This is central to the skill and is constrained to fixed scenes, but users should recognize that invocation reads and processes the specified input.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = os.getenv("SCAN_WEBSERVICE_KEY", "").strip() ... "aiApiKey": self.api_keyThe skill requires a Quark scanning service API key and sends it to the configured Quark API endpoint as part of normal operation.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
本技能会将您提供的图片发送至夸克扫描王官方服务器 (`scan-business.quark.cn`) 进行识别。
The skill clearly discloses that image contents are sent to an external provider for OCR/conversion, which is expected for this service but privacy-relevant.
识别返回的文件会保存至系统临时目录(如 `/tmp`),这些文件将持续存在直到您手动清理
Converted output files may contain extracted document content and are intentionally retained on local temporary storage until the user removes them.
