multi-method-image-generation

Generate image candidates from multiple sources and compare them for recommendation.

366|90|Updated Aug 22, 2026
One-click install
npx skills add https://github.com/bam-bam-2/solo-skills --skill multi-method-image-generation-bam-bam-2
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: multi-method-image-generation
Source: https://github.com/bam-bam-2/solo-skills/tree/main/skills/multi-method-image-generation
Command: npx skills add https://github.com/bam-bam-2/solo-skills --skill multi-method-image-generation-bam-bam-2

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires google-genai.

What problem does it solve? When asked to create an image, a single generation attempt often misses the mark. This Skill mobilizes every available image source—Codex CLI, Gemini API, HTML/CSS rendering, personal photo libraries, and existing brand assets—to produce multiple candidates, compare them, and recommend the best fit for the intended use. ## Core Features & Use Cases - Multi-source generation: Invokes Codex image generation, the Gemini API via the google-genai SDK, HTML/CSS screenshot rendering, iCloud photo libraries, and existing website assets in one workflow. - Side-by-side comparison: Displays all candidates together and evaluates each against the actual use case (standalone visual, text-overlay banner, data visualization, or real-person photo). - Brand consistency: Enforces brand color codes and restrained composition in prompts so generated images match the brand mood. - Use Case: You need a banner image for a blog post. The Skill generates candidates via Codex and Gemini with matched brand-tone prompts, renders an HTML/CSS stat card as a third option, shows all three, and recommends the one with enough whitespace for overlay text. ## Quick Start Ask the agent to use every available method to create an image for your blog banner and compare the results before picking one.

Frequently Asked Questions about multi-method-image-generation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate images with both Codex and Gemini and compare them?

Run codex exec with your prompt for one candidate and call the Gemini API via the google-genai Python SDK for another. Use the same brand-tone prompt (color codes, restrained composition) for both so the outputs are directly comparable, then display them side by side.

What image generation methods can I combine in one workflow?

You can combine Codex CLI generation, Gemini API calls, HTML/CSS rendering with screenshots, personal iCloud photo libraries, existing website brand assets, and web image search. Choose two or more methods suited to the image's purpose.

Where does Codex save generated images?

Codex saves generated images to ~/.codex/generated_images/<session-id>/ because its sandbox is often read-only and cannot write to your target path. Check the output message for the actual path and copy the file separately.

Can I reuse a Gemini API key from another project?

Yes, you can reuse a GEMINI_API_KEY stored in another project's .env file. Never expose the key as plain text in chat when referencing it.

Why does my HTML/CSS screenshot render duplicated content?

Capturing a clip taller than the viewport causes a rendering duplication bug. Keep the canvas size within the viewport height when rendering HTML/CSS for screenshots.