Anime Image Downloader (Safebooru, Download Only)

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward Safebooru image downloader that makes disclosed web requests and saves images locally.

Before installing, be aware that this skill contacts Safebooru and saves downloaded image files locally. Install the dependency in a virtual environment if possible, keep download counts reasonable, and choose a dedicated downloads folder.

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.

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.