nano-banana-blockrun

Generate images via BlockRun's pay-per-image API on the Base network.

3|Updated Dec 29, 2025
One-click install
npx skills add https://github.com/BlockRunAI/nano-banana-blockrun --skill nano-banana-blockrun
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nano-banana-blockrun
Source: https://github.com/BlockRunAI/nano-banana-blockrun/tree/main/.
Command: npx skills add https://github.com/BlockRunAI/nano-banana-blockrun --skill nano-banana-blockrun

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill enables on-demand image generation via BlockRun's pay-per-image API on the Base network. It eliminates the need for external API keys, reduces setup friction, and ensures private, local signing of payment signatures for each image generation.

Core Features & Use Cases

  • Pay-per-image generation: Claude Code prompts are converted into micropayments and images are generated using Google Nano Banana, Nano Banana Pro, or OpenAI DALL-E 3 models.
  • No API keys required: All payments are signed locally on your device; your private key never leaves your machine.
  • Model flexibility: Supports google/nano-banana, google/nano-banana-pro, and openai/dall-e-3.

Quick Start

  1. Install the SDK: pip install blockrun-llm
  2. Configure wallet on Base:
    • Copy the example env: cp .env.example .env
    • Set BLOCKRUN_WALLET_KEY=0x...
    • Or export: export BLOCKRUN_WALLET_KEY=0x...
  3. Generate an image with Python: from blockrun_llm import ImageClient client = ImageClient() result = client.generate("a futuristic city at sunset") print(result.data[0].url)