Back to skill
Skillv1.0.0
ClawScan security
Paint Skill · ClawHub's context-aware review of the artifact, metadata, and declared behavior.
Scanner verdict
SuspiciousApr 6, 2026, 4:39 AM
- Verdict
- suspicious
- Confidence
- medium
- Model
- gpt-5-mini
- Summary
- The code will generate and save a park PNG as claimed, but the documentation advertises interactive/demo modes and CLI options that the bundled script does not implement, and the script writes to a hardcoded user-specific path — these inconsistencies warrant caution.
- Guidance
- This skill's single Python file will draw and save a park image, but its documentation claims interactive GUI and CLI modes that are not present. Before installing or running it: 1) Inspect or run the script in a sandbox or throwaway environment (not as root). 2) Change the hardcoded output path to a safe, configurable location (or modify the script to accept an output filepath argument). 3) If you need interactive/demo features, implement or obtain a script that actually uses Tkinter and parses CLI options. 4) Use a dedicated Python virtual environment and confirm Pillow is the only external dependency. 5) If you plan to let an agent invoke this autonomously, be aware it will write files to disk — ensure the output path is safe and expected. If you need, ask the author for a corrected SKILL.md or a version of the script that matches the documented features.
Review Dimensions
- Purpose & Capability
- noteThe skill's stated purpose (generate and save drawings with Pillow/Tkinter) matches the core behavior: the Python file programmatically draws and saves an image. However, SKILL.md promises interactive Tkinter drawing, demo and CLI modes, and multiple image options; the included script only implements a single draw_park_scene() function and immediately saves one image. The documentation overstates capabilities compared with the code.
- Instruction Scope
- concernSKILL.md instructs users to install conda/mamba, create an environment with tkinter support, and run the script with CLI options (--demo, --park, --custom). The shipped script contains no argparse/CLI handling, no Tkinter usage, and only a single callable that draws a park scene. The instructions therefore give the agent/state broad latitude (expecting interactive and multiple modes) that the code does not actually implement.
- Install Mechanism
- okThere is no install spec; this is primarily an instruction-and-script bundle. That is low risk from an install mechanism perspective. SKILL.md suggests using conda/mamba and pip to install Pillow, which is reasonable for the stated runtime, though the instructions are optional and not enforced by an install step.
- Credentials
- concernThe skill requests no environment variables or credentials, which is proportional. However, the script writes output to a hardcoded absolute path (/Users/m1/.openclaw/workspace/openclaw_drawing.png). This is user-specific and unexpected (not declared in SKILL.md). It may fail on other systems and could overwrite a file at that location if present; the hardcoded path is an incoherent implementation detail versus the documented usage.
- Persistence & Privilege
- noteThe skill does not request elevated privileges, does not set always:true, and does not modify other skills or system settings. It does persist a file to disk at a hardcoded path in a user's home directory, which is limited scope but notable because it is an undeclared, hardcoded side effect.
