$npx -y skills add ECNU-ICALK/AutoSkill --skill baoyu-comicKnowledge comic creator supporting multiple art styles and tones. Creates original educational comics with detailed panel layouts and sequential image generation. Use when user asks to create "知识漫画", "教育漫画", "biography comic", "tutorial comic", or "Logicomix-style comic".
| 1 | # Knowledge Comic Creator |
| 2 | |
| 3 | Create original knowledge comics with flexible art style × tone combinations. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ```bash |
| 8 | /baoyu-comic posts/turing-story/source.md |
| 9 | /baoyu-comic article.md --art manga --tone warm |
| 10 | /baoyu-comic # then paste content |
| 11 | ``` |
| 12 | |
| 13 | ## Options |
| 14 | |
| 15 | ### Visual Dimensions |
| 16 | |
| 17 | | Option | Values | Description | |
| 18 | |--------|--------|-------------| |
| 19 | | `--art` | ligne-claire (default), manga, realistic, ink-brush, chalk | Art style / rendering technique | |
| 20 | | `--tone` | neutral (default), warm, dramatic, romantic, energetic, vintage, action | Mood / atmosphere | |
| 21 | | `--layout` | standard (default), cinematic, dense, splash, mixed, webtoon | Panel arrangement | |
| 22 | | `--aspect` | 3:4 (default, portrait), 4:3 (landscape), 16:9 (widescreen) | Page aspect ratio | |
| 23 | | `--lang` | auto (default), zh, en, ja, etc. | Output language | |
| 24 | |
| 25 | ### Partial Workflow Options |
| 26 | |
| 27 | | Option | Description | |
| 28 | |--------|-------------| |
| 29 | | `--storyboard-only` | Generate storyboard only, skip prompts and images | |
| 30 | | `--prompts-only` | Generate storyboard + prompts, skip images | |
| 31 | | `--images-only` | Generate images from existing prompts directory | |
| 32 | | `--regenerate N` | Regenerate specific page(s) only (e.g., `3` or `2,5,8`) | |
| 33 | |
| 34 | Details: [references/partial-workflows.md](references/partial-workflows.md) |
| 35 | |
| 36 | ### Art Styles (画风) |
| 37 | |
| 38 | | Style | 中文 | Description | |
| 39 | |-------|------|-------------| |
| 40 | | `ligne-claire` | 清线 | Uniform lines, flat colors, European comic tradition (Tintin, Logicomix) | |
| 41 | | `manga` | 日漫 | Large eyes, manga conventions, expressive emotions | |
| 42 | | `realistic` | 写实 | Digital painting, realistic proportions, sophisticated | |
| 43 | | `ink-brush` | 水墨 | Chinese brush strokes, ink wash effects | |
| 44 | | `chalk` | 粉笔 | Chalkboard aesthetic, hand-drawn warmth | |
| 45 | |
| 46 | ### Tones (基调) |
| 47 | |
| 48 | | Tone | 中文 | Description | |
| 49 | |------|------|-------------| |
| 50 | | `neutral` | 中性 | Balanced, rational, educational | |
| 51 | | `warm` | 温馨 | Nostalgic, personal, comforting | |
| 52 | | `dramatic` | 戏剧 | High contrast, intense, powerful | |
| 53 | | `romantic` | 浪漫 | Soft, beautiful, decorative elements | |
| 54 | | `energetic` | 活力 | Bright, dynamic, exciting | |
| 55 | | `vintage` | 复古 | Historical, aged, period authenticity | |
| 56 | | `action` | 动作 | Speed lines, impact effects, combat | |
| 57 | |
| 58 | ### Preset Shortcuts |
| 59 | |
| 60 | Presets with special rules beyond art+tone: |
| 61 | |
| 62 | | Preset | Equivalent | Special Rules | |
| 63 | |--------|-----------|---------------| |
| 64 | | `--style ohmsha` | `--art manga --tone neutral` | Visual metaphors, NO talking heads, gadget reveals | |
| 65 | | `--style wuxia` | `--art ink-brush --tone action` | Qi effects, combat visuals, atmospheric elements | |
| 66 | | `--style shoujo` | `--art manga --tone romantic` | Decorative elements, eye details, romantic beats | |
| 67 | |
| 68 | ### Compatibility Matrix |
| 69 | |
| 70 | | Art Style | ✓✓ Best | ✓ Works | ✗ Avoid | |
| 71 | |-----------|---------|---------|---------| |
| 72 | | ligne-claire | neutral, warm | dramatic, vintage, energetic | romantic, action | |
| 73 | | manga | neutral, romantic, energetic, action | warm, dramatic | vintage | |
| 74 | | realistic | neutral, warm, dramatic, vintage | action | romantic, energetic | |
| 75 | | ink-brush | neutral, dramatic, action, vintage | warm | romantic, energetic | |
| 76 | | chalk | neutral, warm, energetic | vintage | dramatic, action, romantic | |
| 77 | |
| 78 | Details: [references/auto-selection.md](references/auto-selection.md) |
| 79 | |
| 80 | ## Auto Selection |
| 81 | |
| 82 | Content signals determine default art + tone + layout (or preset): |
| 83 | |
| 84 | | Content Signals | Recommended | |
| 85 | |-----------------|-------------| |
| 86 | | Tutorial, how-to, programming, educational | **ohmsha** preset | |
| 87 | | Pre-1950, classical, ancient | realistic + vintage | |
| 88 | | Personal story, mentor | ligne-claire + warm | |
| 89 | | Martial arts, wuxia | **wuxia** preset | |
| 90 | | Romance, school life | **shoujo** preset | |
| 91 | | Biography, balanced | ligne-claire + neutral | |
| 92 | |
| 93 | **When preset is recommended**: Load `references/presets/{preset}.md` and apply all special rules. |
| 94 | |
| 95 | Details: [references/auto-selection.md](references/auto-selection.md) |
| 96 | |
| 97 | ## Script Directory |
| 98 | |
| 99 | **Important**: All scripts are located in the `scripts/` subdirectory of this skill. |
| 100 | |
| 101 | **Agent Execution Instructions**: |
| 102 | 1. Determine this SKILL.md file's directory path as `SKILL_DIR` |
| 103 | 2. Script path = `${SKILL_DIR}/scripts/<script-name>.ts` |
| 104 | 3. Replace all `${SKILL_DIR}` in this document with the actual path |
| 105 | |
| 106 | **Script Reference**: |
| 107 | | Script | Purpose | |
| 108 | |--------|---------| |
| 109 | | `scripts/merge-to-pdf.ts` | Merge comic pages into PDF | |
| 110 | |
| 111 | ## File Structure |
| 112 | |
| 113 | Output directory: `comic/{topic-slug}/` |
| 114 | - Slug: 2-4 words kebab-case from topic (e.g., `alan-turing-bio`) |
| 115 | - Conflict: append timestamp (e.g., `turing-story-20260118-143052`) |
| 116 | |
| 117 | **Contents**: |
| 118 | | File | Description | |
| 119 | |------|-------------| |
| 120 | | `source-{slug}.{ext}` | Source files | |
| 121 | | `analysis.md` | Content an |