AI image generation has become an essential tool for developers building creative applications, especially when working with video creation, educational content, or storytelling projects. The image-generation skill pack brings two powerful, production-ready image generation capabilities directly into your Claude Code workflow — all completely free and open source under the MIT license.
The image-generation pack isn't just one tool — it's a carefully curated combination of two specialized services that work together seamlessly:
This skill leverages Google's Gemini NanoBanana model to generate high-quality AI images from text prompts. Unlike generic image generators, NanoBanana is optimized for specific use cases like educational content, book illustrations, and poetry visuals. It automatically applies style prefixes (Ghibli, Educational, etc.) and generates images in the perfect 9:16 portrait ratio for Shorts and vertical video formats.
The implementation is clean and developer-friendly, with a TypeScript service class that handles all the complexity:
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 }> }>;
}
Key features include automatic style prefixing, character reference mode support, and efficient API usage patterns that minimize costs while maximizing quality.
Once you have your static images, the next step is bringing them to life. The Seedance integration converts your AI-generated images into smooth, professional video clips using the Seedance 1.5 Fast model hosted on Atlas Cloud. At just $0.11 per clip, this is one of the most cost-effective ways to add motion to your content.
The Seedance service is designed for reliability and quality, with critical safeguards built in:
cameraFixed: true when generating videos. This prevents hallucinations and ensures stable, professional results.
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 }>;
}
For developers using Claude Code to build automation workflows, having reliable, programmable image generation capabilities is transformative. Instead of manually creating assets or relying on external services with complex APIs, you can now generate exactly what you need, when you need it, with simple function calls.
The image-generation pack is designed with real-world development constraints in mind:
Adding these capabilities to your Claude Code environment takes less than a minute:
/plugin marketplace add https://github.com/clickaround/marketplace/plugin install image-generation@clickaroundImageGenerationService and AtlasCloudClient classes in your projectsThe complete source code is available for inspection and modification, making it easy to adapt to your specific needs.
⭐ Star this skill on GitHub: github.com/clickaround/image-generation — if this saves you time, give it a star. That's the only marketing budget I have.
🚀 Pro Bundle (₩59,000 lifetime): Get all 7 skill packs including image-generation, plus Discord community access and monthly Q&A sessions. Get the full ClickAround Creator Pro bundle.