Nano Banana Pro OpenRouter
Analysis
The skill’s image-generation behavior is mostly coherent, but it handles OpenRouter API keys and provider endpoints in a way users should review before installing.
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.
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.
sh ~/.openclaw/workspace/skills/nano-banana-pro-openrouter/scripts/generate_image.sh --prompt "your image description" ... Images are always saved under `~/.openclaw/workspace/outputs/nano-banana-pro-openrouter`
The skill runs a local shell script and writes output files; this is disclosed and central to its image-generation purpose.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
If `~/.openclaw/workspace/skills/nano-banana-pro-openrouter/.env` exists: ... Use the `read` tool to read `.env` ... Extract `OPENROUTER_API_KEY` ... Always pass the key via `--api-key`
This explicitly directs the agent to read a local credential file and put the API key into command arguments, which increases secret exposure beyond a narrowly scoped environment-variable use.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
base_url=${OPENROUTER_BASE_URL:-} ... curl ... -H "Authorization: Bearer $api_key" ... -d "$payload" ... "$base_url"The endpoint receiving the prompt and bearer token is taken from environment/.env configuration and is not constrained to an OpenRouter domain or HTTPS endpoint.
