Anime Image Downloader (Safebooru, Download Only)

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

The skill can download files and use disk space in the selected output folder.

Why it was flagged

The skill performs external HTTP requests and writes the returned image bytes to local disk, which is exactly its stated purpose but is still a capability users should notice.

Skill content
POST_DAPI = "https://safebooru.org/index.php?page=dapi&s=post&q=index&json=1" ... with open(out_path, "wb") as f: f.write(r.content)
Recommendation

Use modest download counts, review the output directory, and avoid pointing --out at sensitive system or project paths.

What this means

A later dependency version could behave differently from the version originally tested by the skill author.

Why it was flagged

The dependency is not pinned to an exact version, so future installs may resolve to different versions of the requests package.

Skill content
requests>=2.28.0
Recommendation

Install in a virtual environment and consider pinning dependencies if you need reproducible or higher-assurance installs.