Smart Image Search
Analysis
This image-search skill appears purpose-aligned, but it will send search queries to public image search engines and save downloaded images locally.
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.
with urllib.request.urlopen(req, timeout=30) as resp:
data = resp.read()
...
out_dir = Path("/home/mumu/clawd/tmp/search-image")The script downloads image bytes from a selected result URL and writes them to a local directory. This is purpose-aligned, but it means untrusted web content is saved locally.
Source: unknown Homepage: none
The registry metadata does not provide an upstream source or homepage. This is a provenance limitation, though the provided artifacts do not show hidden install steps or unexpected dependencies.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
url = f"https://www.bing.com/images/search?q={encoded}" ... url = f"https://image.baidu.com/search/index?tn=baiduimage&word={encoded}" ... url = f"https://pic.sogou.com/pics?query={encoded}"The skill sends the user's search query to third-party image search providers. This is expected for the stated purpose, but query text may be visible to those providers.
