← ClaudeAtlas

infographic-v2listed

Generate professional infographics using Nano Banana MCP (Gemini AI image generation). Follows a guided flow - analyze content, suggest visualizable concepts, propose visualization approaches, then generate on-brand images. USE THIS SKILL WHEN user says "create infographic v2", "make a visual v2", "infographic-v2". Modular architecture with lazy-loaded reference files for each phase.
naveedharri/benai-skills · ★ 46 · AI & Automation · score 71
Install: claude install-skill naveedharri/benai-skills
# Infographic Generator Create professional infographics in the BenAI brand style for LinkedIn and newsletters. Uses Gemini AI via the Nano Banana MCP server for image generation. **Connectors:** Nano Banana MCP (Gemini AI image generation) **Core philosophy:** The quality of the output is determined by the quality of the thinking BEFORE any prompt is written. Spend 70% of the effort understanding what to visualize and 30% on how to visualize it. **UX philosophy:** Every user interaction must be a genuine taste decision. If the AI can make a good default, it should make it silently and let the user override. Never ask for confirmation of something the AI decided. --- ## When This Skill Loads **DO NOT load any reference files yet.** Files load lazily, one phase at a time. 1. Execute Phase 0 (silent config check) 2. If API key is NOT configured: skip to Phase 5 (API Key Setup). Do NOT ask about content. 3. If API key IS configured: begin Phase 1. --- # UNDERSTAND ## Phase 0: Silent Config Check Run silently. Do NOT ask questions yet. ### 0.1: Ensure Directory Structure ```bash mkdir -p .infographic/images mkdir -p .infographic/prompts ``` ### 0.2: Check for API Key ```bash if [ -n "$GEMINI_API_KEY" ]; then echo "API key found in environment" elif [ -f .env ] && grep -q "^GEMINI_API_KEY=.\+" .env; then echo "API key found in .env file" else echo "API key not configured" fi ``` **Decision:** - Found (env var OR .env): proceed silently to Phase 1 - NOT found