一键导入
baoyu-editorial-line-image
用 MiniMax image-01 生成黑白线稿人物 + 杂志编辑风格的图片(editorial line system)。适用于小红书封面、微博配图、微信小绿书配图。触发:用户说"editorial"、"黑白线稿"、"做成这种插画风格"、"用editorial风格"。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
用 MiniMax image-01 生成黑白线稿人物 + 杂志编辑风格的图片(editorial line system)。适用于小红书封面、微博配图、微信小绿书配图。触发:用户说"editorial"、"黑白线稿"、"做成这种插画风格"、"用editorial风格"。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Direct browser control via CDP. Use when the user wants to automate, scrape, test, or interact with web pages. Connects to the user's already-running Chrome.
Convert any input into a modern editorial black-and-white line-art character illustration system and produce PNG image-generation outputs by default. Use when the user asks to turn text, images, brand names, product ideas, UI concepts, or campaigns into minimalist geometric character illustrations, editorial layouts, website hero visuals, mobile UI mockups, packaging, magazine spreads, or PNG visuals in the specified monochrome line-art plus pastel accent style.
Debug red border/rectangle overlays appearing on Chinese text in HyperFrames HTML on macOS Chrome — caused by images with baked-in borders, not CSS.
Extract frames from a reference video at precise timestamps to analyze opening animation timing and visual style before building a HyperFrames composition.
Typeset professional documents: resumes, one-pagers, white papers, letters, portfolios, slide decks. Warm parchment, ink-blue accent, serif-led hierarchy. CN uses TsangerJinKai02, EN uses Charter, JA uses YuMincho (best-effort). Triggers on "做 PDF / 排版 / 一页纸 / 白皮书 / 作品集 / 简历 / PPT / slides", or "build me a resume / make a one-pager / design a slide deck / turn this into a PDF / make this presentable".
Generate professional SVG logos and high-end showcase images. Use when the user wants to: (1) Create a logo or icon for their product/brand, (2) Generate logo design concepts based on product information, (3) Create professional logo showcase presentations with multiple background styles, (4) Export logos in various formats (SVG, PNG), or (5) Iterate on logo designs with different visual styles. Supports geometric patterns, dot matrix designs, line systems, and mixed compositions. Generates showcase images using Nano Banana (Gemini image generation) with 12 professional background styles.
| name | baoyu-editorial-line-image |
| description | 用 MiniMax image-01 生成黑白线稿人物 + 杂志编辑风格的图片(editorial line system)。适用于小红书封面、微博配图、微信小绿书配图。触发:用户说"editorial"、"黑白线稿"、"做成这种插画风格"、"用editorial风格"。 |
用 MiniMax API 生成 editorial line system 风格的图片——黑白线稿人物 + 杂志编辑排版 + 少量柔和色块。
A modern editorial illustration for [SUBJECT], featuring minimalist black-and-white line art characters in a clean flat geometric style. [SCENE DESCRIPTION with character action and emotion]. Editorial magazine typography reads '[HEADLINE TEXT]'. Pastel accent blocks in [ACCENT_COLORS: soft yellow, warm cream, muted orange] fill background geometric shapes. Large negative space, asymmetrical layout, strong hierarchy. Urban lifestyle aesthetic, vector-like smooth lines, flat design, no realistic lighting, no 3D render. Vertical poster format 1080x1920.
Negative prompt: 3D, realistic shading, glossy gradients, stock-photo look, childish cartoon, clutter, illegible text, excessive colors, anime style.
| 场景 | 比例 | 用途 |
|---|---|---|
| 小红书封面 | 1080x1920 | 竖版配图 |
| 微博配图 | 1280x720 | 横向 |
| 微信小绿书 | 1080x1920 | 竖版 |
| 知乎回答配图 | 1024x1024 | 方版 |
source ~/.baoyu-skills/baoyu-imagine/.env 2>/dev/null
PROMPT="A modern editorial illustration for [完整prompt]..."
IMG_URL=$(curl -s -X POST "https://api.minimaxi.com/v1/image_generation" \
-H "Authorization: Bearer $MINIMAX_API_KEY" \
-H "Content-Type: application/json" \
-d "{\"model\":\"image-01\",\"prompt\":$(echo "$PROMPT" | jq -Rs .),\"image_size\":\"1080x1920\",\"return_url\":true}" \
| python3 -c "import sys,json; d=json.load(sys.stdin); print(d['data']['image_urls'][0].replace('%2F','/').replace('%25','%'))")
curl -s "$IMG_URL" -o /tmp/output.jpg --max-time 60
echo "Done: /tmp/output.jpg"
%2F 等编码,必须替换后再 curl 下载jq -Rs . 处理(raw string)