Nano Banana Prompting Skill
Analysis
The skill appears purpose-aligned for Gemini image prompting, but users should notice that it uses a Gemini API key and delegates actual image generation to a local helper script.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
**Requires:** The `nano-banana-pro` skill (bundled with OpenClaw) or any Gemini image generation script.
The artifact is instruction-only and delegates actual image generation to another local skill or script, so the safety of that helper matters.
uv run {nano-banana-pro-dir}/scripts/generate_image.py --prompt '<YOUR_JSON_PROMPT>' --filename "<descriptive-name>.png" --resolution 2KThe skill instructs the agent to run a local Python image-generation helper. This is disclosed and central to the stated image-generation purpose.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"requires": { "bins": ["uv"], "env": ["GEMINI_API_KEY"] }, "primaryEnv": "GEMINI_API_KEY"The skill requires a Gemini API key, which is expected for Gemini image generation but still grants access to the user's provider account or quota.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
For image editing (user provides a reference image): ... -i "/path/to/reference.png"
For edits, the workflow passes a user-provided reference image path to the Gemini image-generation helper, implying the image may be processed by the external generation service.
