image-generation: AI Image Generation & Image-to-Video Skills for Claude Code

Welcome to the image-generation skill pack — your complete solution for AI-powered visual content creation within Claude Code. This open-source toolkit gives you two powerful capabilities: generating stunning AI images with Gemini NanoBanana, and transforming those images into captivating short videos with Seedance 1.5.

Generate Professional AI Images with NanoBanana

The NanoBanana skill brings state-of-the-art AI image generation directly to your Claude Code workflow. Unlike generic image generators, NanoBanana is specifically optimized for educational and creative projects with built-in style presets:

NanoBanana integrates seamlessly with your existing projects through a clean TypeScript API:

class ImageGenerationService {
  async generateImages(
    options: {
      prompt: string;
      numberOfImages: number;
      aspectRatio: string; // "9:16" for portrait
    },
    videoId: string,
    sceneIndex: number
  ): Promise<{ success: boolean; images: Array<{ data: Buffer }> }>;
}

Simply install the package, set your GOOGLE_GEMINI_API_KEY environment variable, and start generating professional-quality images in seconds.

Transform Images into Engaging Videos with Seedance

Once you've created your perfect images, the Seedance skill converts them into dynamic video clips. This image-to-video capability is essential for creating compelling Shorts content that captures attention and drives engagement.

Seedance 1.5 Fast model runs on Atlas Cloud infrastructure, delivering high-quality results at an exceptional value of just $0.11 per clip. The integration is designed for reliability and ease of use:

The TypeScript interface makes integration straightforward:

class AtlasCloudClient {
  async generateVideo(options: {
    prompt: string;        // 영상 모션 설명
    image: string;         // base64 또는 URL
    duration: number;      // 초 단위 (5~10)
    orientation: string;   // "portrait" (9:16)
    cameraFixed: boolean;  // true 권장 (할루시네이션 방지)
  }): Promise<{ url: string }>;
}

Installation and Getting Started

Getting started with image-generation is simple and takes less than a minute:

  1. Add the ClickAround marketplace: /plugin marketplace add https://github.com/clickaround/marketplace
  2. Install the image-generation pack: /plugin install image-generation@clickaround
  3. Set your API keys as environment variables:
  4. Start generating images and videos in your Claude Code projects!

Why This Matters for Indie Developers

For indie developers and content creators, the image-generation pack solves two critical pain points:

This isn't just another AI tool — it's a complete visual content pipeline designed specifically for the Claude Code ecosystem.