NSFW Image Generation — Unrestricted AI Image Models

PassAudited by ClawScan on May 1, 2026.

Overview

This is a disclosed Atlas Cloud image-generation integration; the main things to review are that prompts/images are sent to Atlas Cloud and the API key is tied to paid account usage.

Before installing, make sure you are comfortable sending prompts and images to Atlas Cloud and using an API key that can spend your account balance. Use a dedicated key, limit and monitor account balance, and upload only files you intentionally want processed by the provider.

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.

What this means

Using the skill runs local code that makes Atlas Cloud API requests and writes generated image files to disk.

Why it was flagged

The skill directs use of a local Python script to perform image generation and save results. This execution path is disclosed and aligned with the skill purpose.

Skill content
python scripts/generate_image.py generate \
  --model "MODEL_ID" \
  --prompt "Your prompt here" \
  --output ./output
Recommendation

Run it only from the reviewed skill directory and choose an intended output folder.

What this means

If the key or account balance is misused, image-generation charges could be incurred under the user's Atlas Cloud account.

Why it was flagged

The required API key is tied to a paid Atlas Cloud account and cannot be narrowly scoped, so misuse could consume balance or access models under the user's account.

Skill content
All usage is billed to this account... Atlas Cloud does not currently support scoped/limited keys — each key grants access to all models on your account.
Recommendation

Use a dedicated API key, keep only the balance you intend to spend, monitor usage, and revoke the key when finished.

What this means

Prompts and any uploaded images may be processed by Atlas Cloud, so private or sensitive content could leave the user's machine.

Why it was flagged

The skill discloses an external provider data flow where user prompts and uploaded images leave the local environment for processing.

Skill content
This skill sends text prompts and image data to the Atlas Cloud API (`api.atlascloud.ai`) for image generation.
Recommendation

Upload only files and prompts you are comfortable sending to Atlas Cloud, and review the provider's privacy and retention terms.