github-actions-plugin/skills/github-social-preview/SKILL.md
Generate 1280x640 PNG social preview images for GitHub repos using nano-banana-pro. Use when asked for social preview, Open Graph image, or repo images for social media.
npx skillsauth add laurigates/claude-plugins github-social-previewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate professional social preview images for GitHub repositories. These images appear when repository links are shared on social media platforms like Twitter, LinkedIn, Slack, and Discord.
This skill piggybacks on the nano-banana-pro skill for image generation. Ensure:
GOOGLE_API_KEY or GEMINI_API_KEY is setpip install google-genai Pillow (or use uv run)| Requirement | Value | |-------------|-------| | Minimum dimensions | 640 × 320 pixels | | Recommended dimensions | 1280 × 640 pixels | | Aspect ratio | 2:1 (width:height) | | File formats | PNG, JPG, GIF | | Max file size | 1 MB | | Transparency | Supported (PNG only) |
PNG transparency can be beneficial for dark mode, but test against:
# Generate a social preview for your repository
uv run python .claude/scripts/nano_banana_pro.py \
"Professional GitHub social preview image for [PROJECT NAME]: [DESCRIPTION]. \
Modern, clean design with bold typography. Tech-focused aesthetic. \
Include visual elements representing [KEY FEATURE]. \
Optimized for social media sharing." \
--aspect 16:9 \
--resolution 2K \
--output social-preview.png
Note: Use 16:9 aspect ratio (closest to 2:1) for optimal display.
Professional GitHub social preview for a developer tool called "[NAME]".
Modern terminal aesthetic with code-inspired elements.
Bold, readable project name. Dark background with syntax highlighting colors.
Clean, minimalist design suitable for social media sharing.
GitHub social preview for "[NAME]" - a [LANGUAGE] library for [PURPOSE].
Abstract geometric patterns representing [CONCEPT].
Project name in bold modern typography.
Professional tech aesthetic with gradients.
Social preview image for "[NAME]" application.
Illustrate the core functionality: [DESCRIPTION].
Clean UI mockup or abstract representation.
Vibrant colors with professional polish.
GitHub preview for "[NAME]" - [DESCRIPTION].
Data visualization or neural network inspired graphics.
Modern scientific aesthetic with clean typography.
Blue and purple color scheme.
If you have an existing brand image or style reference:
uv run python .claude/scripts/nano_banana_pro.py \
"GitHub social preview in the style of the reference. \
Include project name '[NAME]' prominently. \
Maintain brand consistency." \
--aspect 16:9 \
--resolution 2K \
--reference brand-logo.png \
--output social-preview.png
# Check image dimensions
magick identify social-preview.png
# Should show: 1280x640 or similar 2:1 ratio
# Resize to exact GitHub recommended dimensions
magick social-preview.png -resize 1280x640! github-preview.png
# Or resize maintaining aspect ratio (adds letterboxing)
magick social-preview.png -resize 1280x640 \
-gravity center -background '#1a1a1a' \
-extent 1280x640 github-preview.png
# Optimize PNG (must be under 1MB)
magick social-preview.png -strip -quality 95 optimized-preview.png
# Check file size
ls -lh optimized-preview.png
Before uploading, preview how the image will appear:
The preview may take a few minutes to propagate across platforms.
# 1. Generate the image
uv run python .claude/scripts/nano_banana_pro.py \
"GitHub social preview for 'dotfiles' - a cross-platform configuration manager. \
Show abstract connected nodes representing configuration sync. \
Modern dark theme with blue accents. Bold 'dotfiles' text." \
--aspect 16:9 \
--resolution 2K \
--output generated/social-preview.png
# 2. Resize to exact dimensions
magick generated/social-preview.png \
-resize 1280x640^ \
-gravity center \
-extent 1280x640 \
social-preview-final.png
# 3. Verify size (must be < 1MB)
ls -lh social-preview-final.png
# 4. Check dimensions
magick identify social-preview-final.png
# Reduce quality
magick social-preview.png -quality 85 -strip smaller.png
# Convert to JPEG (smaller but no transparency)
magick social-preview.png -quality 85 preview.jpg
| Use this skill when... | Use other skills instead when... |
|---|---|
| Creating or refreshing a repository's social preview image | Generating arbitrary images from a text prompt — use nano-banana-pro directly |
| Producing project thumbnails for documentation | Resizing or optimizing an existing image — use imagemagick-conversion |
| Generating Open Graph images for GitHub Pages | Producing complex illustrations or pixel-perfect layouts (use a dedicated design tool) |
| You want repo metadata (name, language, description) auto-fed into the prompt | Producing animated GIF previews (use video editing tools) |
tools
Scaffold a new ComfyUI custom-node repo (pyproject, CI, release-please, vitest+pytest, JS extension skeleton) in the picker/gesture vein. Use when bootstrapping or init-ing a comfyui node pack.
tools
Orchestrate a ComfyUI node pack from idea to registry: scaffold, create + seed the repo, open the gitops adoption PR. Use when releasing or spinning up a new comfyui node pack.
testing
macOS EndpointSecurity/EDR high CPU & battery drain. Use when Kandji ESF / XProtect pegs a core; trace the exec storm via powermetrics + eslogger.
development
odiff pixel-by-pixel image diffing. Use when comparing screenshots, detecting visual regressions, diffing before/after PNGs, asserting golden images.