悟空邀请码监控
Analysis
This skill appears to do what it says—monitor a fixed invite-code image, OCR it locally, and optionally run on a schedule—but users should notice the optional cron persistence and system package installation steps.
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.
CMD="sudo apt install -y tesseract-ocr tesseract-ocr-chi-sim" ... read -p "是否现在安装?(Y/n): " ... eval $CMD
The setup script can install OCR packages with sudo via the system package manager. It prompts first and is aligned with the OCR purpose, but it is still elevated installation behavior users should review.
CRON="*/$INTERVAL * * * * cd $(dirname $0) && python3 monitor_lite.py check >> /tmp/wukong-monitor.log 2>&1" ... | crontab -
The optional setup script writes a recurring cron job so monitoring continues in the background. This is disclosed and purpose-aligned, but it is persistent behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
NOTIFY_FILE = "/tmp/wukong-new-code-notify.txt" WATCHED_FILE = "/tmp/wukong-watched-state.json"
The skill stores notification and watched-state data in /tmp files and later reads them back for notification handling. This is expected for deduplication, but /tmp is shared local storage.
