Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create educational and knowledge comics with multiple art styles (manga, ligne-claire, ink-brush) and tone combinations.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/config/first-time-setup.md
1---2name: first-time-setup3description: First-time setup flow for baoyu-comic preferences4---56# First-Time Setup78## Overview910When no EXTEND.md is found, guide user through preference setup.1112**⛔ BLOCKING OPERATION**: This setup MUST complete before ANY other workflow steps. Do NOT:13- Ask about content/source material14- Ask about art style or tone15- Ask about layout preferences16- Proceed to content analysis1718ONLY ask the questions in this setup flow, save EXTEND.md, then continue.1920## Setup Flow2122```23No EXTEND.md found24│25▼26┌─────────────────────┐27│ AskUserQuestion │28│ (all questions) │29└─────────────────────┘30│31▼32┌─────────────────────┐33│ Create EXTEND.md │34└─────────────────────┘35│36▼37Continue to Step 138```3940## Questions4142**Language**: Use user's input language or preferred language for all questions. Do not always use English.4344Use single AskUserQuestion with multiple questions (AskUserQuestion auto-adds "Other" option):4546### Question 1: Watermark4748```49header: "Watermark"50question: "Watermark text for generated comic pages? Type your watermark content (e.g., name, @handle)"51options:52- label: "No watermark (Recommended)"53description: "No watermark, can enable later in EXTEND.md"54```5556Position defaults to bottom-right.5758### Question 2: Preferred Art Style5960```61header: "Art"62question: "Default art style preference? Or type another style name"63options:64- label: "Auto-select (Recommended)"65description: "Auto-select based on content analysis"66- label: "ligne-claire"67description: "Uniform lines, flat colors, European comic (Tintin style)"68- label: "manga"69description: "Japanese manga style, expressive eyes and emotions"70- label: "realistic"71description: "Digital painting, sophisticated and professional"72```7374### Question 3: Preferred Tone7576```77header: "Tone"78question: "Default tone/mood preference?"79options:80- label: "Auto-select (Recommended)"81description: "Auto-select based on content signals"82- label: "neutral"83description: "Balanced, rational, educational"84- label: "warm"85description: "Nostalgic, personal, comforting"86- label: "dramatic"87description: "High contrast, intense, powerful"88```8990### Question 4: Language9192```93header: "Language"94question: "Output language for comic text?"95options:96- label: "Auto-detect (Recommended)"97description: "Match source content language"98- label: "zh"99description: "Chinese (中文)"100- label: "en"101description: "English"102```103104### Question 5: Save Location105106```107header: "Save"108question: "Where to save preferences?"109options:110- label: "Project"111description: ".baoyu-skills/ (this project only)"112- label: "User"113description: "~/.baoyu-skills/ (all projects)"114```115116## Save Locations117118| Choice | Path | Scope |119|--------|------|-------|120| Project | `.baoyu-skills/baoyu-comic/EXTEND.md` | Current project |121| User | `~/.baoyu-skills/baoyu-comic/EXTEND.md` | All projects |122123## After Setup1241251. Create directory if needed1262. Write EXTEND.md with frontmatter1273. Confirm: "Preferences saved to [path]"1284. Continue to Step 1129130## EXTEND.md Template131132```yaml133---134version: 2135watermark:136enabled: [true/false]137content: "[user input or empty]"138position: bottom-right139opacity: 0.5140preferred_art: [selected art style or null]141preferred_tone: [selected tone or null]142preferred_layout: null143preferred_aspect: null144language: [selected or null]145preferred_image_backend: auto146character_presets: []147---148```149150`preferred_image_backend: auto` is the baked-in default — first-time setup does not ask about it. The `## Image Generation Tools` rule in SKILL.md then picks the runtime-native tool (Codex `imagegen`, Hermes `image_generate`, etc.) when available, and falls back to installed backends.151152## Modifying Preferences Later153154See the `## Changing Preferences` section in `SKILL.md` for the canonical list of common edits (pin backend, change defaults, retrigger setup). Full schema: `config/preferences-schema.md`.155