$npx -y skills add freestylefly/canghe-skills --skill canghe-xhs-imagesGenerates Xiaohongshu (Little Red Book) infographic series with 10 visual styles and 8 layouts. Breaks content into 1-10 cartoon-style images optimized for XHS engagement. Use when user mentions "小红书图片", "XHS images", "RedNote infographics", "小红书种草", or wants social media infogra
| 1 | # Xiaohongshu Infographic Series Generator |
| 2 | |
| 3 | Break down complex content into eye-catching infographic series for Xiaohongshu with multiple style options. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ```bash |
| 8 | # Auto-select style and layout based on content |
| 9 | /canghe-xhs-images posts/ai-future/article.md |
| 10 | |
| 11 | # Specify style |
| 12 | /canghe-xhs-images posts/ai-future/article.md --style notion |
| 13 | |
| 14 | # Specify layout |
| 15 | /canghe-xhs-images posts/ai-future/article.md --layout dense |
| 16 | |
| 17 | # Combine style and layout |
| 18 | /canghe-xhs-images posts/ai-future/article.md --style notion --layout list |
| 19 | |
| 20 | # Direct content input |
| 21 | /canghe-xhs-images |
| 22 | [paste content] |
| 23 | |
| 24 | # Direct input with options |
| 25 | /canghe-xhs-images --style bold --layout comparison |
| 26 | [paste content] |
| 27 | ``` |
| 28 | |
| 29 | ## Options |
| 30 | |
| 31 | | Option | Description | |
| 32 | |--------|-------------| |
| 33 | | `--style <name>` | Visual style (see Style Gallery) | |
| 34 | | `--layout <name>` | Information layout (see Layout Gallery) | |
| 35 | |
| 36 | ## Two Dimensions |
| 37 | |
| 38 | | Dimension | Controls | Options | |
| 39 | |-----------|----------|---------| |
| 40 | | **Style** | Visual aesthetics: colors, lines, decorations | cute, fresh, warm, bold, minimal, retro, pop, notion, chalkboard, study-notes | |
| 41 | | **Layout** | Information structure: density, arrangement | sparse, balanced, dense, list, comparison, flow, mindmap, quadrant | |
| 42 | |
| 43 | Style × Layout can be freely combined. Example: `--style notion --layout dense` creates an intellectual-looking knowledge card with high information density. |
| 44 | |
| 45 | ## Style Gallery |
| 46 | |
| 47 | | Style | Description | |
| 48 | |-------|-------------| |
| 49 | | `cute` (Default) | Sweet, adorable, girly - classic Xiaohongshu aesthetic | |
| 50 | | `fresh` | Clean, refreshing, natural | |
| 51 | | `warm` | Cozy, friendly, approachable | |
| 52 | | `bold` | High impact, attention-grabbing | |
| 53 | | `minimal` | Ultra-clean, sophisticated | |
| 54 | | `retro` | Vintage, nostalgic, trendy | |
| 55 | | `pop` | Vibrant, energetic, eye-catching | |
| 56 | | `notion` | Minimalist hand-drawn line art, intellectual | |
| 57 | | `chalkboard` | Colorful chalk on black board, educational | |
| 58 | | `study-notes` | Realistic handwritten photo style, blue pen + red annotations + yellow highlighter | |
| 59 | |
| 60 | Detailed style definitions: `references/presets/<style>.md` |
| 61 | |
| 62 | ## Layout Gallery |
| 63 | |
| 64 | | Layout | Description | |
| 65 | |--------|-------------| |
| 66 | | `sparse` (Default) | Minimal information, maximum impact (1-2 points) | |
| 67 | | `balanced` | Standard content layout (3-4 points) | |
| 68 | | `dense` | High information density, knowledge card style (5-8 points) | |
| 69 | | `list` | Enumeration and ranking format (4-7 items) | |
| 70 | | `comparison` | Side-by-side contrast layout | |
| 71 | | `flow` | Process and timeline layout (3-6 steps) | |
| 72 | | `mindmap` | Center radial mind map layout (4-8 branches) | |
| 73 | | `quadrant` | Four-quadrant / circular section layout | |
| 74 | |
| 75 | Detailed layout definitions: `references/elements/canvas.md` |
| 76 | |
| 77 | ## Auto Selection |
| 78 | |
| 79 | | Content Signals | Style | Layout | |
| 80 | |-----------------|-------|--------| |
| 81 | | Beauty, fashion, cute, girl, pink | `cute` | sparse/balanced | |
| 82 | | Health, nature, clean, fresh, organic | `fresh` | balanced/flow | |
| 83 | | Life, story, emotion, feeling, warm | `warm` | balanced | |
| 84 | | Warning, important, must, critical | `bold` | list/comparison | |
| 85 | | Professional, business, elegant, simple | `minimal` | sparse/balanced | |
| 86 | | Classic, vintage, old, traditional | `retro` | balanced | |
| 87 | | Fun, exciting, wow, amazing | `pop` | sparse/list | |
| 88 | | Knowledge, concept, productivity, SaaS | `notion` | dense/list | |
| 89 | | Education, tutorial, learning, teaching, classroom | `chalkboard` | balanced/dense | |
| 90 | | Notes, handwritten, study guide, knowledge, realistic, photo | `study-notes` | dense/list/mindmap | |
| 91 | |
| 92 | ## Outline Strategies |
| 93 | |
| 94 | Three differentiated outline strategies for different content goals: |
| 95 | |
| 96 | ### Strategy A: Story-Driven (故事驱动型) |
| 97 | |
| 98 | | Aspect | Description | |
| 99 | |--------|-------------| |
| 100 | | **Concept** | Personal experience as main thread, emotional resonance first | |
| 101 | | **Features** | Start from pain point, show before/after change, strong authenticity | |
| 102 | | **Best for** | Reviews, personal shares, transformation stories | |
| 103 | | **Structure** | Hook → Problem → Discovery → Experience → Conclusion | |
| 104 | |
| 105 | ### Strategy B: Information-Dense (信息密集型) |
| 106 | |
| 107 | | Aspect | Description | |
| 108 | |--------|-------------| |
| 109 | | **Concept** | Value-first, efficient information delivery | |
| 110 | | **Features** | Clear structure, explicit points, professional credibility | |
| 111 | | **Best for** | Tutorials, comparisons, product reviews, checklists | |
| 112 | | **Structure** | Core conclusion → Info card → Pros/Cons → Recommendation | |
| 113 | |
| 114 | ### Strategy C: Visual-First (视觉优先型) |
| 115 | |
| 116 | | Aspect | Description | |
| 117 | |--------|-------------| |
| 118 | | **Concept** | Visual impact as core, minimal text | |
| 119 | | **Features** | Large images, atmospheric, instant appeal | |
| 120 | | **Best for** | High-aesthetic products, lifestyle, mood-based content | |
| 121 | | **Struct |