mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-31 14:19:47 +08:00
2c800c670a
* docs: add runtime-neutral User Input Tools convention across skills Introduce docs/user-input-tools.md as the author-side canonical source and inline the tool-selection rule into every SKILL.md that prompts the user. Also add Skill Self-Containment and User Input Tools sections to CLAUDE.md and the copy-verbatim template to docs/creating-skills.md, so skills stay portable across Claude Code, Codex, Hermes, and other runtimes. * feat: runtime-neutral image generation convention across skills - Introduce inline `## Image Generation Tools` rule in every rendering SKILL.md so skills delegate backend choice instead of hard-coding one; author-side canonical copy lives in docs/image-generation-tools.md. - Add `## Reference Images` support (`--ref`, frontmatter `references:` with direct/style/palette usage) to all seven image-rendering skills. - Move build-batch.ts (with ref propagation into batch JSON) from baoyu-article-illustrator to baoyu-imagine so non-backend skills don't own backend-specific scripts; update baoyu-image-gen stub in sync and relax the CLAUDE.md deprecation note accordingly. * refactor: slim heavy SKILL.md files and move detail to references/ Trim the four largest active skills and move presets, option tables, and confirmation scripts into per-skill references/ so SKILL.md stays focused on the decision flow. - baoyu-slide-deck: 761→258, + styles-gallery.md, confirmation.md - baoyu-image-cards: 657→280, + gallery.md, confirmation.md - baoyu-post-to-wechat: 518→267, + multi-account.md, api-setup.md - baoyu-imagine: 500→230, + providers/, usage-examples.md Also un-deprecate baoyu-image-gen (drop stub warning) so it stays functional alongside baoyu-imagine, and update CLAUDE.md to reflect that both superseded skills are kept in sync rather than stubbed. * refactor: slim four medium SKILL.md files into references/ Continue the P2 pattern on the next tier of skills — move option catalogs, per-provider/adapter detail, and repeated EXTEND.md path boilerplate into their own references so SKILL.md stays focused on the decision flow. - baoyu-comic: 380→297 (art/tone/preset tables → auto-selection.md; Step 7 expanded detail → workflow.md) - baoyu-infographic: 312→207 (layouts/styles/combinations/keywords → gallery.md; ASCII box tables → markdown tables) - baoyu-format-markdown: 376→296 (title + summary generation → title-summary.md; ASCII box tables → markdown tables) - baoyu-url-to-markdown: 334→169 (quality gate + recovery → quality-gate.md; adapters + media download → adapters.md) * chore: sync deprecated skills with their replacements Per project policy, baoyu-xhs-images and baoyu-image-gen are kept functional alongside the active skills they were superseded by. Sync their SKILL.md bodies and references/ to the slimmed baoyu-image-cards and baoyu-imagine versions respectively, so cross-cutting fixes stay consistent. Only the frontmatter (name, description, version, homepage) differs — content is identical. - baoyu-xhs-images: 657→281 (synced with baoyu-image-cards + new confirmation.md, gallery.md) - baoyu-image-gen: 408→231 (synced with baoyu-imagine + new providers/, usage-examples.md) * refactor: collapse EXTEND.md boilerplate into priority tables Replace the dual bash/powershell existence-check blocks and ASCII box art with a single markdown priority table across nine SKILL.md files. The runtime-neutral phrasing removes shell-specific snippets without losing the priority semantics. * fix: address refactor-skills branch review findings - image-gen: restore EXTEND.md paths to baoyu-image-gen (were pointing at baoyu-imagine) and mark descriptions of both deprecated skills as [Deprecated]. - xhs-images: sync neon/warm palettes with image-cards to add the "do not render color names/hex as visible text" safety sentence. - infographic: restore Layout Gallery (21), Style Gallery (21), Recommended Combinations, and Keyword Shortcuts inline (previous refactor split them out but SKILL.md still depended on them), and add the missing references/config/first-time-setup.md + preferences-schema.md. - image-cards / xhs-images / slide-deck / format-markdown: restore the sections that got over-slimmed into references/ (galleries, presets, dimensions, auto-selection, style x layout matrix, title/summary flow) and drop the now-empty shell files. - docs/image-generation-tools.md: note that backend skills themselves (baoyu-imagine, baoyu-image-gen, baoyu-danger-gemini-web) are exempt from the ## Image Generation Tools section requirement. * feat(image-gen): sync Z.AI GLM-Image provider from baoyu-imagine Add Z.AI as a full provider in the deprecated baoyu-image-gen skill so it stays in sync with baoyu-imagine's provider list. - new scripts/providers/zai.ts + zai.test.ts (verbatim port; test factory trimmed to match image-gen's CliArgs shape). - types.ts: "zai" added to Provider union and default_model. - main.ts: rate-limit defaults, provider help text, env var help, --provider validation, loadProviderModule, detectProvider auto-detect chain, getModelForProvider, YAML parser allow-lists. - references/config: Q2e Z.AI model question + zai slot in the preferences schema and batch.provider_limits. Scope is intentionally limited to the Z.AI chain; unrelated drift between image-gen and imagine (OpenAI image-API dialect, aspectRatioSource, imageSizeSource) is left alone. * docs: align inline-convention wording and note backend-skill exemption - docs/user-input-tools.md: fix stale "links here" wording so it matches the inline convention already enforced everywhere else. - CLAUDE.md §Image Generation Tools: inline the backend-skill exemption so readers don't need to cross-reference docs/image-generation-tools.md.
421 lines
21 KiB
Markdown
421 lines
21 KiB
Markdown
---
|
||
name: baoyu-image-cards
|
||
description: Generates infographic image card series with 12 visual styles, 8 layouts, and 3 color palettes. Breaks content into 1-10 cartoon-style image cards optimized for social media engagement. Use when user mentions "小红书图片", "小红书种草", "小绿书", "微信图文", "微信贴图", "image cards", "图片卡片", or wants social media infographic series.
|
||
version: 1.56.1
|
||
metadata:
|
||
openclaw:
|
||
homepage: https://github.com/JimLiu/baoyu-skills#baoyu-image-cards
|
||
---
|
||
|
||
# Image Card Series Generator
|
||
|
||
Break down complex content into eye-catching image card series with multiple style options.
|
||
|
||
## User Input Tools
|
||
|
||
When this skill prompts the user, follow this tool-selection rule (priority order):
|
||
|
||
1. **Prefer built-in user-input tools** exposed by the current agent runtime — e.g., `AskUserQuestion`, `request_user_input`, `clarify`, `ask_user`, or any equivalent.
|
||
2. **Fallback**: if no such tool exists, emit a numbered plain-text message and ask the user to reply with the chosen number/answer for each question.
|
||
3. **Batching**: if the tool supports multiple questions per call, combine all applicable questions into a single call; if only single-question, ask them one at a time in priority order.
|
||
|
||
Concrete `AskUserQuestion` references below are examples — substitute the local equivalent in other runtimes.
|
||
|
||
## Image Generation Tools
|
||
|
||
When this skill needs to render an image:
|
||
|
||
- **Use whatever image-generation tool or skill is available** in the current runtime — e.g., Codex `imagegen`, Hermes `image_generate`, `baoyu-imagine`, or any equivalent the user has installed.
|
||
- **If multiple are available**, ask the user **once** at the start which to use (batch with any other initial questions).
|
||
- **If none are available**, tell the user and ask how to proceed.
|
||
|
||
**Prompt file requirement (hard)**: write each image's full, final prompt to a standalone file under `prompts/` (naming: `NN-{type}-[slug].md`) BEFORE invoking any backend. The file is the reproducibility record and lets you switch backends without regenerating prompts.
|
||
|
||
## Language
|
||
|
||
Respond in the user's language across questions, progress, errors, and completion summary. Keep technical tokens (style names, file paths, code) in English.
|
||
|
||
## Options
|
||
|
||
| Option | Description |
|
||
|--------|-------------|
|
||
| `--style <name>` | Visual style (see Styles below) |
|
||
| `--layout <name>` | Information layout (see Layouts below) |
|
||
| `--palette <name>` | Color override: macaron / warm / neon |
|
||
| `--preset <name>` | Style + layout + optional palette shorthand (see Presets below; per-preset prompt fragments in `references/style-presets.md`) |
|
||
| `--ref <files...>` | Reference images applied to image 1 as the series anchor |
|
||
| `--yes` | Non-interactive: skip all confirmations, use EXTEND.md or built-in defaults, auto-confirm recommended plan (Path A) |
|
||
|
||
## Dimensions
|
||
|
||
Three independent knobs combine freely:
|
||
|
||
| Dimension | Controls | Options |
|
||
|-----------|----------|---------|
|
||
| **Style** | Visual aesthetics (lines, decorations, rendering) | 12 styles (see Styles below) |
|
||
| **Layout** | Information structure (density, arrangement) | 8 layouts (see Layouts below) |
|
||
| **Palette** (optional) | Color override, replaces the style's default colors | macaron / warm / neon (see Palettes below) |
|
||
|
||
Example: `--style notion --layout dense` makes an intellectual knowledge card; add `--palette macaron` to soften the colors without changing notion's rendering rules. A `--preset` is a shorthand for style + layout (+ optional palette).
|
||
|
||
**Palette behavior**: no `--palette` → style's built-in colors; `--palette <name>` → overrides colors only, rendering rules unchanged. Some styles declare a `default_palette` (e.g., sketch-notes defaults to macaron).
|
||
|
||
## Styles (12)
|
||
|
||
| Style | Description |
|
||
|-------|-------------|
|
||
| `cute` (Default) | Sweet, adorable, girly aesthetic |
|
||
| `fresh` | Clean, refreshing, natural |
|
||
| `warm` | Cozy, friendly, approachable |
|
||
| `bold` | High impact, attention-grabbing |
|
||
| `minimal` | Ultra-clean, sophisticated |
|
||
| `retro` | Vintage, nostalgic, trendy |
|
||
| `pop` | Vibrant, energetic, eye-catching |
|
||
| `notion` | Minimalist hand-drawn line art, intellectual |
|
||
| `chalkboard` | Colorful chalk on black board, educational |
|
||
| `study-notes` | Realistic handwritten photo style, blue pen + red annotations + yellow highlighter |
|
||
| `screen-print` | Bold poster art, halftone textures, limited colors, symbolic storytelling |
|
||
| `sketch-notes` | Hand-drawn educational infographic, macaron pastels on warm cream, wobble lines |
|
||
|
||
Per-style specifications: `references/presets/<style>.md`.
|
||
|
||
## Layouts (8)
|
||
|
||
| Layout | Description |
|
||
|--------|-------------|
|
||
| `sparse` (Default) | 1-2 points, maximum impact |
|
||
| `balanced` | 3-4 points, standard |
|
||
| `dense` | 5-8 points, knowledge-card style |
|
||
| `list` | Enumeration / ranking (4-7 items) |
|
||
| `comparison` | Side-by-side contrast |
|
||
| `flow` | Process / timeline (3-6 steps) |
|
||
| `mindmap` | Center-radial (4-8 branches) |
|
||
| `quadrant` | Four-quadrant / circular sections |
|
||
|
||
Layout specs: `references/elements/canvas.md`.
|
||
|
||
## Palettes (optional override)
|
||
|
||
Replaces the style's colors while keeping rendering rules (line treatment, textures) intact.
|
||
|
||
| Palette | Background | Zone Colors | Accent | Feel |
|
||
|---------|------------|-------------|--------|------|
|
||
| `macaron` | Warm cream #F5F0E8 | Blue #A8D8EA, Lavender #D5C6E0, Mint #B5E5CF, Peach #F8D5C4 | Coral #E8655A | Soft, educational |
|
||
| `warm` | Soft peach #FFECD2 | Orange #ED8936, Terracotta #C05621, Golden #F6AD55, Rose #D4A09A | Sienna #A0522D | Earth tones, cozy |
|
||
| `neon` | Dark purple #1A1025 | Cyan #00F5FF, Magenta #FF00FF, Green #39FF14, Pink #FF6EC7 | Yellow #FFFF00 | High-energy, futuristic |
|
||
|
||
Palette specs: `references/palettes/<palette>.md`.
|
||
|
||
## Presets (style + layout shortcuts)
|
||
|
||
Quick-start combos, grouped by scenario. Use `--preset <name>` or recommend during Step 2.
|
||
|
||
**Knowledge & Learning**:
|
||
|
||
| Preset | Style | Layout | Best For |
|
||
|--------|-------|--------|----------|
|
||
| `knowledge-card` | notion | dense | 干货知识卡、概念科普 |
|
||
| `checklist` | notion | list | 清单、排行榜 |
|
||
| `concept-map` | notion | mindmap | 概念图、知识脉络 |
|
||
| `swot` | notion | quadrant | SWOT 分析、四象限 |
|
||
| `tutorial` | chalkboard | flow | 教程步骤、操作流程 |
|
||
| `classroom` | chalkboard | balanced | 课堂笔记、知识讲解 |
|
||
| `study-guide` | study-notes | dense | 学习笔记、考试重点 |
|
||
| `hand-drawn-edu` | sketch-notes | flow | 手绘教程、流程图解 |
|
||
| `sketch-card` | sketch-notes | dense | 手绘知识卡 |
|
||
| `sketch-summary` | sketch-notes | balanced | 手绘总结、图文笔记 |
|
||
|
||
**Lifestyle & Sharing**:
|
||
|
||
| Preset | Style | Layout | Best For |
|
||
|--------|-------|--------|----------|
|
||
| `cute-share` | cute | balanced | 少女风分享、日常种草 |
|
||
| `girly` | cute | sparse | 甜美封面、氛围感 |
|
||
| `cozy-story` | warm | balanced | 生活故事、情感分享 |
|
||
| `product-review` | fresh | comparison | 产品对比、测评 |
|
||
| `nature-flow` | fresh | flow | 健康流程、自然主题 |
|
||
|
||
**Impact & Opinion**:
|
||
|
||
| Preset | Style | Layout | Best For |
|
||
|--------|-------|--------|----------|
|
||
| `warning` | bold | list | 避坑指南、重要提醒 |
|
||
| `versus` | bold | comparison | 正反对比 |
|
||
| `clean-quote` | minimal | sparse | 金句、极简封面 |
|
||
| `pro-summary` | minimal | balanced | 专业总结、商务内容 |
|
||
|
||
**Trend & Entertainment**:
|
||
|
||
| Preset | Style | Layout | Best For |
|
||
|--------|-------|--------|----------|
|
||
| `retro-ranking` | retro | list | 复古排行、经典盘点 |
|
||
| `throwback` | retro | balanced | 怀旧分享 |
|
||
| `pop-facts` | pop | list | 趣味冷知识 |
|
||
| `hype` | pop | sparse | 炸裂封面、惊叹分享 |
|
||
|
||
**Poster & Editorial**:
|
||
|
||
| Preset | Style | Layout | Best For |
|
||
|--------|-------|--------|----------|
|
||
| `poster` | screen-print | sparse | 海报风封面、影评书评 |
|
||
| `editorial` | screen-print | balanced | 观点文章、文化评论 |
|
||
| `cinematic` | screen-print | comparison | 电影对比、戏剧张力 |
|
||
|
||
Full prompt-fragment definitions: `references/style-presets.md`.
|
||
|
||
## Auto-Selection
|
||
|
||
Match content signals to the best combo. First row whose keywords appear wins; fall back to `cute-share` if nothing matches.
|
||
|
||
| Signals in source | Style | Layout | Recommended preset |
|
||
|-------------------|-------|--------|--------------------|
|
||
| beauty, fashion, cute, girl, pink | `cute` | sparse/balanced | `cute-share`, `girly` |
|
||
| health, nature, fresh, organic | `fresh` | balanced/flow | `product-review`, `nature-flow` |
|
||
| life, story, emotion, warm | `warm` | balanced | `cozy-story` |
|
||
| warning, important, must, critical | `bold` | list/comparison | `warning`, `versus` |
|
||
| professional, business, elegant | `minimal` | sparse/balanced | `clean-quote`, `pro-summary` |
|
||
| classic, vintage, traditional | `retro` | balanced | `throwback`, `retro-ranking` |
|
||
| fun, exciting, wow, amazing | `pop` | sparse/list | `hype`, `pop-facts` |
|
||
| knowledge, concept, productivity, SaaS | `notion` | dense/list | `knowledge-card`, `checklist` |
|
||
| education, tutorial, learning, classroom | `chalkboard` | balanced/dense | `tutorial`, `classroom` |
|
||
| notes, handwritten, study guide, realistic | `study-notes` | dense/list/mindmap | `study-guide` |
|
||
| movie, poster, opinion, editorial, cinematic | `screen-print` | sparse/comparison | `poster`, `editorial`, `cinematic` |
|
||
| hand-drawn, infographic, workflow, 手绘, 图解 | `sketch-notes` | flow/balanced/dense | `hand-drawn-edu`, `sketch-card`, `sketch-summary` |
|
||
|
||
## Style × Layout Matrix
|
||
|
||
Compatibility scores (✓✓ highly recommended, ✓ works well, ✗ avoid). Use when the user picks a non-default combo and you want to flag a poor match.
|
||
|
||
| | sparse | balanced | dense | list | comparison | flow | mindmap | quadrant |
|
||
|--------------|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
||
| cute | ✓✓ | ✓✓ | ✓ | ✓✓ | ✓ | ✓ | ✓ | ✓ |
|
||
| fresh | ✓✓ | ✓✓ | ✓ | ✓ | ✓ | ✓✓ | ✓ | ✓ |
|
||
| warm | ✓✓ | ✓✓ | ✓ | ✓ | ✓✓ | ✓ | ✓ | ✓ |
|
||
| bold | ✓✓ | ✓ | ✓ | ✓✓ | ✓✓ | ✓ | ✓ | ✓✓ |
|
||
| minimal | ✓✓ | ✓✓ | ✓✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
|
||
| retro | ✓✓ | ✓✓ | ✓ | ✓✓ | ✓ | ✓ | ✓ | ✓ |
|
||
| pop | ✓✓ | ✓✓ | ✓ | ✓✓ | ✓✓ | ✓ | ✓ | ✓ |
|
||
| notion | ✓✓ | ✓✓ | ✓✓ | ✓✓ | ✓✓ | ✓✓ | ✓✓ | ✓✓ |
|
||
| chalkboard | ✓✓ | ✓✓ | ✓✓ | ✓✓ | ✓ | ✓✓ | ✓✓ | ✓ |
|
||
| study-notes | ✗ | ✓ | ✓✓ | ✓✓ | ✓ | ✓ | ✓✓ | ✓ |
|
||
| screen-print | ✓✓ | ✓✓ | ✗ | ✓ | ✓✓ | ✓ | ✗ | ✓✓ |
|
||
| sketch-notes | ✓ | ✓✓ | ✓✓ | ✓✓ | ✓ | ✓✓ | ✓✓ | ✓ |
|
||
|
||
## Outline Strategies
|
||
|
||
Three differentiated approaches — each produces a structurally different outline. The workflow recommends one; Path C generates all three and lets the user choose.
|
||
|
||
| Strategy | Concept | Best for | Structure |
|
||
|----------|---------|----------|-----------|
|
||
| **A — Story-Driven** | Personal experience as the thread, emotional resonance first | Reviews, personal shares, transformation | Hook → Problem → Discovery → Experience → Conclusion |
|
||
| **B — Information-Dense** | Value-first, efficient information delivery | Tutorials, comparisons, checklists | Core conclusion → Info card → Pros/Cons → Recommendation |
|
||
| **C — Visual-First** | Visual impact as core, minimal text | High-aesthetic products, lifestyle, mood content | Hero image → Detail shots → Lifestyle scene → CTA |
|
||
|
||
## Reference Images
|
||
|
||
User-supplied refs are **separate from** the internal "image-1 as anchor" chain (Step 3) — they layer on top of it.
|
||
|
||
**Intake**: via `--ref <files...>` or paths pasted in conversation.
|
||
- File path → copy to `refs/NN-ref-{slug}.{ext}`
|
||
- Pasted with no path → ask for the path, or extract style traits as a text fallback
|
||
|
||
**Usage modes** (per reference):
|
||
|
||
| Usage | Effect |
|
||
|-------|--------|
|
||
| `direct` | Pass the file to the backend (typically on image 1 only, so the anchor propagates through the chain) |
|
||
| `style` | Extract style traits and append to every card's prompt body |
|
||
| `palette` | Extract hex colors and append to every card's prompt body |
|
||
|
||
Record refs in each affected card's prompt frontmatter:
|
||
|
||
```yaml
|
||
references:
|
||
- ref_id: 01
|
||
filename: 01-ref-brand.png
|
||
usage: direct
|
||
```
|
||
|
||
At generation time: verify files exist. Image 1 with `usage: direct` + backend that accepts refs → pass via the backend's ref parameter (becomes the chain anchor). Images 2+ keep using image-1 as `--ref` per Step 3 — do NOT re-stack user refs on top (avoids conflicting signals). For `style`/`palette`, embed extracted traits in every prompt.
|
||
|
||
## File Layout
|
||
|
||
```
|
||
image-cards/{topic-slug}/
|
||
├── source-{slug}.{ext}
|
||
├── analysis.md
|
||
├── outline-strategy-{a,b,c}.md # Path C only
|
||
├── outline.md
|
||
├── prompts/NN-{type}-{slug}.md
|
||
├── NN-{type}-{slug}.png
|
||
└── refs/ # only if --ref used
|
||
```
|
||
|
||
**Slug**: 2-4 words, kebab-case. "AI 工具推荐" → `ai-tools-recommend`. On collision, append `-YYYYMMDD-HHMMSS`.
|
||
|
||
**Backup rule** (applies throughout): before overwriting any file — source, outline, prompt, image — rename the existing one to `<name>-backup-YYYYMMDD-HHMMSS.<ext>`. This protects user edits.
|
||
|
||
## Workflow
|
||
|
||
```
|
||
- [ ] Step 0: Load EXTEND.md ⛔ BLOCKING (interactive only)
|
||
- [ ] Step 1: Analyze content → analysis.md
|
||
- [ ] Step 2: Smart Confirm ⚠️ REQUIRED (Path A / B / C)
|
||
- [ ] Step 3: Generate images
|
||
- [ ] Step 4: Completion report
|
||
```
|
||
|
||
### Step 0: Load EXTEND.md ⛔ BLOCKING
|
||
|
||
Check these paths in order; first hit wins:
|
||
|
||
| Path | Scope |
|
||
|------|-------|
|
||
| `.baoyu-skills/baoyu-image-cards/EXTEND.md` | Project |
|
||
| `${XDG_CONFIG_HOME:-$HOME/.config}/baoyu-skills/baoyu-image-cards/EXTEND.md` | XDG |
|
||
| `$HOME/.baoyu-skills/baoyu-image-cards/EXTEND.md` | User home |
|
||
|
||
- **Found** → read, parse, print a summary (style / layout / watermark / language), continue.
|
||
- **Not found + interactive** → run first-time setup (see `references/config/first-time-setup.md`) and save before anything else. Do NOT analyze content or ask style questions until preferences exist — this keeps first-run behavior predictable.
|
||
- **Not found + `--yes`** → skip setup, use built-in defaults (no watermark, style/layout auto-selected, language from content). Do not prompt, do not create EXTEND.md.
|
||
|
||
**EXTEND.md keys**: watermark, preferred style/layout, custom style definitions, language preference. Schema: `references/config/preferences-schema.md`.
|
||
|
||
### Step 1: Analyze Content → `analysis.md`
|
||
|
||
1. Save the source (backup rule applies if `source.md` exists).
|
||
2. Run the deep analysis in `references/workflows/analysis-framework.md`: content type, hook potential, audience, engagement signals, visual opportunity map, swipe flow.
|
||
3. Detect source language, pick recommended image count (2-10).
|
||
4. Auto-recommend strategy + style + layout + palette using the **Auto-Selection** table above.
|
||
5. Write everything to `analysis.md`.
|
||
|
||
### Step 2: Smart Confirm ⚠️ REQUIRED
|
||
|
||
Goal: present the auto-recommended plan and let the user confirm or adjust. Skip this step entirely under `--yes` — proceed with Path A using the analysis and any CLI overrides.
|
||
|
||
**Display summary** before asking:
|
||
|
||
```
|
||
📋 内容分析
|
||
主题:[topic] | 类型:[content_type]
|
||
要点:[key points]
|
||
受众:[audience]
|
||
|
||
🎨 推荐方案(自动匹配)
|
||
策略:[A/B/C] [name]([reason])
|
||
风格:[style] · 布局:[layout] · 配色:[palette or 默认] · 预设:[preset]
|
||
图片:[N]张(封面+[N-2]内容+结尾)
|
||
元素:[background] / [decorations] / [emphasis]
|
||
```
|
||
|
||
Then ask one question — three paths. Verbatim option copy: `references/confirmation.md`.
|
||
|
||
**Path A — Quick confirm** (trust auto-recommendation): generate a single outline using the recommended strategy + style → save to `outline.md` → Step 3.
|
||
|
||
**Path B — Customize**: ask five questions (strategy/style, layout, palette, count, optional notes) with the recommendation pre-filled — blanks keep the recommendation. Generate one outline with the user's choices → `outline.md` → Step 3. See `references/confirmation.md`.
|
||
|
||
**Path C — Detailed mode**: two sub-confirmations.
|
||
|
||
- *Step 2a — Content understanding*: ask selling points (multi-select), audience, style preference (authentic / professional / aesthetic / auto), optional context. Update `analysis.md`.
|
||
- *Step 2b — Three outline variants*: generate `outline-strategy-a.md`, `outline-strategy-b.md`, `outline-strategy-c.md`. Each MUST have a different structure AND a different recommended style — include `style_reason` in the frontmatter. Page-count heuristic: A ~4-6, B ~3-5, C ~3-4. Template: `references/workflows/outline-template.md`; frontmatter example in `references/confirmation.md`.
|
||
- *Step 2c — Selection*: ask three questions (outline A/B/C/Combined, style, visual elements). Save selected/merged outline to `outline.md` → Step 3.
|
||
|
||
### Step 3: Generate Images
|
||
|
||
With confirmed outline + style + layout + palette:
|
||
|
||
**Visual consistency — image-1 anchor chain**: character / mascot / color rendering drifts between calls unless you anchor them. Generate image 1 (cover) first WITHOUT `--ref`, then pass image 1 as `--ref` to every subsequent image. This is the single most important consistency trick for this skill — don't skip it even if the backend also supports a session ID.
|
||
|
||
For each image (cover, content, ending):
|
||
|
||
1. Write the full prompt to `prompts/NN-{type}-{slug}.md` in the user's preferred language (backup rule applies).
|
||
2. Generate:
|
||
- **Image 1**: no `--ref` (establishes the anchor).
|
||
- **Images 2+**: add `--ref <path-to-image-01.png>`.
|
||
- Backup rule applies to the PNG files.
|
||
3. Report progress after each image.
|
||
|
||
**Watermark** (if enabled in EXTEND.md): append to the generation prompt:
|
||
|
||
```
|
||
Include a subtle watermark "[content]" positioned at [position].
|
||
The watermark should be legible but not distracting.
|
||
```
|
||
|
||
See `references/config/watermark-guide.md`.
|
||
|
||
**Backend selection**: per the Image Generation Tools rule at the top — use whatever is available, ask once if multiple, before any generation. Under `--yes`, use the EXTEND.md preference and fall back to the first available backend. Prompt files MUST exist before invoking any backend.
|
||
|
||
**Session ID** (if the backend supports `--sessionId`): use `cards-{topic-slug}-{timestamp}` for every image; combined with the ref chain this gives maximum consistency.
|
||
|
||
### Step 4: Completion Report
|
||
|
||
```
|
||
Image Card Series Complete!
|
||
|
||
Topic: [topic]
|
||
Mode: [Quick / Custom / Detailed]
|
||
Strategy: [A/B/C/Combined]
|
||
Style: [name]
|
||
Palette: [name or "default"]
|
||
Layout: [name or "varies"]
|
||
Location: [directory]
|
||
Images: N total
|
||
|
||
✓ analysis.md
|
||
✓ outline.md
|
||
✓ outline-strategy-a/b/c.md (detailed mode only)
|
||
|
||
- 01-cover-[slug].png ✓ Cover (sparse)
|
||
- 02-content-[slug].png ✓ Content (balanced)
|
||
- ...
|
||
- NN-ending-[slug].png ✓ Ending (sparse)
|
||
```
|
||
|
||
## Content Breakdown Principles
|
||
|
||
| Position | Purpose | Typical layout |
|
||
|----------|---------|----------------|
|
||
| Cover (image 1) | Hook + visual impact | `sparse` |
|
||
| Content (middle) | Core value per image | `balanced` / `dense` / `list` / `comparison` / `flow` |
|
||
| Ending (last) | CTA / summary | `sparse` or `balanced` |
|
||
|
||
For the style × layout compatibility matrix, see the **Style × Layout Matrix** above.
|
||
|
||
## Image Modification
|
||
|
||
| Action | How |
|
||
|--------|-----|
|
||
| Edit | Update `prompts/NN-{type}-{slug}.md` **first**, then regenerate with the same session ID |
|
||
| Add | Specify position, create prompt, generate, renumber subsequent files `NN+1`, update outline |
|
||
| Delete | Remove files, renumber subsequent `NN-1`, update outline |
|
||
|
||
Always update the prompt file before regenerating — it's the source of truth and makes changes reproducible.
|
||
|
||
## References
|
||
|
||
| File | Content |
|
||
|------|---------|
|
||
| `references/confirmation.md` | Verbatim AskUserQuestion copy for every confirmation path |
|
||
| `references/style-presets.md` | Full preset shortcut definitions |
|
||
| `references/presets/<style>.md` | Per-style element definitions |
|
||
| `references/palettes/<name>.md` | Per-palette color definitions |
|
||
| `references/elements/canvas.md` | Aspect ratios, safe zones, grid layouts |
|
||
| `references/elements/image-effects.md` | Cutout, stroke, filters |
|
||
| `references/elements/typography.md` | Decorated text, tags, text direction |
|
||
| `references/elements/decorations.md` | Emphasis marks, backgrounds, doodles, frames |
|
||
| `references/workflows/analysis-framework.md` | Content analysis framework |
|
||
| `references/workflows/outline-template.md` | Outline template with layout guide |
|
||
| `references/workflows/prompt-assembly.md` | Prompt assembly guide |
|
||
| `references/config/preferences-schema.md` | EXTEND.md schema |
|
||
| `references/config/first-time-setup.md` | First-time setup flow |
|
||
| `references/config/watermark-guide.md` | Watermark configuration |
|
||
|
||
## Notes
|
||
|
||
- Auto-retry once on generation failure before reporting an error.
|
||
- For sensitive public figures, use stylized cartoon alternatives.
|
||
- Smart Confirm (Step 2) is required; Detailed mode adds a second confirmation (2a + 2c).
|
||
|
||
Custom configurations via EXTEND.md. See Step 0 for paths and schema.
|