Gemini Image Proxy

PassAudited by ClawScan on May 1, 2026.

Overview

The skill matches its stated image-generation purpose, but it requires an API key and sends prompts or input images to the configured proxy endpoint.

Before installing, make sure you trust the API endpoint in GOOGLE_PROXY_BASE_URL, use an appropriate API key, and install the openai package from a trusted source. Avoid using sensitive images or prompts unless you are comfortable sending them to that 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

Installing an unpinned package can change behavior over time if the package version changes.

Why it was flagged

The setup instructions require installing the OpenAI Python SDK without a pinned version. This is expected for the skill, but it relies on the package source and current package version.

Skill content
python3 -m pip install openai
Recommendation

Install from a trusted Python package source and consider pinning a known-good openai package version.

What this means

The configured API key may authorize usage or billing on the selected image service.

Why it was flagged

The script uses a user-provided API key and base URL to access the image API. This is necessary for the stated purpose and the code does not show hardcoding or logging of the key.

Skill content
client = OpenAI(api_key=api_key, base_url=base_url)
Recommendation

Use a limited-purpose API key where possible and verify that GOOGLE_PROXY_BASE_URL is the intended trusted endpoint.

What this means

Private prompts or images may be sent to the endpoint configured in GOOGLE_PROXY_BASE_URL.

Why it was flagged

For edits, the script uploads the prompt and the selected input image to the configured API endpoint. This is purpose-aligned but creates an external data flow.

Skill content
response = client.images.edits(
                model=MODEL,
                prompt=prompt,
                image=image_file,
Recommendation

Only use trusted API endpoints and avoid submitting sensitive images unless you are comfortable with that provider receiving them.