Drip director

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears purpose-aligned for guided fashion image generation, but users should notice that it uses local reference images, external Google/Nano Banana services, and a Google API key that are not reflected in the registry requirements.

Before installing, make sure you are comfortable setting a Google API key, potentially incurring provider usage, sending fashion/reference image data to external image and Gemini services, and allowing the skill to read recent OpenClaw inbound media paths. Use a restricted API key and review each confirmation step carefully.

Findings (5)

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

Installation may not clearly warn users that the skill expects command-line tools and a Google API key.

Why it was flagged

The skill declares runtime tools and an API key in SKILL.md even though the registry metadata lists no required binaries, env vars, or primary credential.

Skill content
requires:\n      bins:\n        - curl\n        - jq\n        - uv\n      env:\n        - GOOGLE_API_KEY
Recommendation

Treat these dependencies as required before use, and prefer registry metadata that accurately declares them.

What this means

Provider requests may use the user's Google account quota, billing, or permissions.

Why it was flagged

The skill uses a Google API key for its image generation/critique workflow. This is purpose-aligned, but it is still delegated account access.

Skill content
- `GOOGLE_API_KEY` environment variable set
Recommendation

Use a restricted API key with only the needed Gemini/image-generation permissions and monitor usage.

What this means

The skill may inspect recent OpenClaw inbound media filenames/paths to associate reference images with the current request.

Why it was flagged

The skill instructs the agent to run a local shell command to identify recent inbound media files. The command is narrow and purpose-aligned, but it is still local tool use.

Skill content
ls -t1 ~/.openclaw/media/inbound/ | head -20
Recommendation

Use it only when you are comfortable with the skill accessing recent inbound media paths, and keep unrelated sensitive files out of that folder.

What this means

Local image paths and inferred image details may remain in the agent's session context while the workflow runs.

Why it was flagged

The skill keeps session state containing reference image paths and generated image paths. This is useful for the pipeline, but it may include sensitive local path information.

Skill content
Maintain this state object throughout the entire session... reference_images: [] ... file_path: ""          # full absolute path of generated image
Recommendation

Avoid using sensitive personal images unless you are comfortable with them being part of the session context.

What this means

Prompts, generated images, and possibly reference-image information may be processed by external services.

Why it was flagged

The workflow relies on external/provider model calls for generation and critique. This is disclosed and central to the purpose, but it crosses a provider boundary.

Skill content
generates via Nano Banana Pro, critiques via a separate Gemini instance... The critique stage must use Gemini API directly via curl
Recommendation

Review the provider privacy terms and avoid submitting images or prompts you would not want processed externally.