我的二维码生成技能
Analysis
The QR-code function is coherent, but the skill attempts to run automatic pip installs from its code, so it should be reviewed before installation.
Findings (2)
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.
except ImportError:
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
...
# 初始化:安装依赖库
install_dependencies()The module attempts to run pip installation commands automatically when loaded, rather than only during an explicit user-approved setup step.
if not save_path:
save_path = os.path.expanduser("~/Desktop/qr_code.png")
...
if not os.path.exists(save_dir):
os.makedirs(save_dir)
...
img.save(save_path)The skill saves generated images to disk and creates the destination directory if missing; this matches the stated QR export purpose but still changes local files.
