Blog image generator
Skill mb3rgel-ui/nova-claude-skill/skills/blog-image-generator
Nova — AI Content Studio for Claude Code. Content calendar, research, carousels, blog images, X posting.
npx -y skills add mb3rgel-ui/nova-claude-skill --skill blog-image-generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate blog post hero images using Google Gemini's image generation model.
SKILL.md
2.1 KB, as published. Nobody here has run it
Blog Image Generator
Generate high-quality hero images for blog posts using Gemini's native image generation.
Prerequisites
- Google Gemini API key: set
GEMINI_API_KEYenv var or store at~/.config/gemini/api_key
Quick Start
GEMINI_API_KEY=$(cat ~/.config/gemini/api_key 2>/dev/null || echo "$GEMINI_API_KEY")
curl -s -X POST \
"https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash-exp:generateContent?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"contents": [{
"parts": [{"text": "Generate a blog hero image: bright, modern, clean composition showing [YOUR SUBJECT]. No text in the image. Photorealistic editorial style, warm natural lighting."}]
}],
"generationConfig": {
"responseModalities": ["TEXT", "IMAGE"]
}
}' | python3 -c "
import sys, json, base64
data = json.load(sys.stdin)
for part in data['candidates'][0]['content']['parts']:
if 'inlineData' in part:
img = base64.b64decode(part['inlineData']['data'])
with open('hero-image.png', 'wb') as f:
f.write(img)
print(f'Saved hero-image.png ({len(img)} bytes)')
"
Style Guidelines
Good prompts:
- "Bright, clean workspace with laptop showing analytics dashboard, warm natural lighting, editorial photography"
- "Overhead flat-lay of coffee, notebook, and pen on marble surface, soft morning light"
- "Abstract geometric pattern in teal and warm earth tones, modern minimalist design"
Avoid:
- Baked-in text/words (Gemini renders text poorly)
- Dark, moody aesthetics (unless that's your brand)
- Generic stock photo compositions
Tips
- Always specify "no text in the image" — AI models love adding random words
- Include lighting direction ("warm natural lighting", "soft diffused light")
- Reference a photographic style ("editorial", "lifestyle", "product photography")
- Aspect ratio defaults to square — crop after generation for blog headers (16:9)