
AI 技能AI 插件【免费下载链接】baoyu-skills项目地址https://gitcode.com/gh_mirrors/ba/baoyu-skills点击查看免费下载本指南以 baoyu-article-illustrator 技能的 prompt-construction.md 为核心系统讲解该技能为文章配图时提示词Prompt文件的构造规范包括 YAML Frontmatter 元数据、参考图references的三种用法、默认构图与配色约束以及 infographic、scene、flowchart、comparison、framework、timeline 六类类型化模板。读完本文你将能够按照仓库既有规范写出结构化、可复现、高稳定性的插画提示词并与该技能的 Outline → Prompt → 批量生成工作流无缝衔接。一、为什么提示词文件必须是结构化的在 baoyu-article-illustrator 的完整工作流中提示词文件承担两个关键角色生成输入与可复现记录。根据 SKILL.md 的硬性要求Prompt file requirement (hard)每一张插画的完整最终提示词都必须先写入prompts/目录下的独立文件命名规则NN-{type}-[slug].md之后才能调用任何图像生成后端。该文件随后被后端读取作为--prompt或--promptfiles的输入。同时workflow.md 第 5.1 步将创建提示词文件标记为BLOCKING阻塞级步骤如果某张插画没有先保存提示词文件就不能开始生成失败重试也仍然基于同一份已保存的提示词文件保证输出可追溯、可切换后端而无需重写提示词。因此提示词构造规范直接决定了生成结果是否稳定符合预期结构约束越明确模型越不容易自由发挥同一套提示词能否在不同后端Codeximagegen、baoyu-image-gen等之间迁移后续修改改 prompt → 重新生成是否低成本可操作。二、Prompt 文件格式YAML Frontmatter 内容每个提示词文件采用YAML Frontmatter 正文的双段结构。Frontmatter 用于承载结构化元数据正文承载实际渲染指令--- illustration_id: 01 type: infographic style: blueprint references: # ⚠️ 仅当 references/ 目录中确实存在文件时才写 - ref_id: 01 filename: 01-ref-diagram.png usage: direct # direct | style | palette --- [Type-specific template content below...]各字段含义字段说明illustration_id插画序号与 Outline 中 Illustration N 对应type信息结构类型infographic / scene / flowchart / comparison / framework / timeline / mixedstyle渲染风格如 sketch-notes、vector-illustration、blueprint、screen-print 等references参考图列表可选每项含ref_id、filename、usage在 workflow.md 的 5.1 步中提示词文件被要求包含完整结构字段且 Frontmatter 还可能承载palette调色板字段ASPECT宽高比也可以写入 Frontmatter 供后端读取。三、references 字段何时写、何时不写、怎么用3.1 三条铁律情形操作参考图文件已保存到references/目录在 Frontmatter 中写入references字段 ✓仅口头提取了风格无文件不要写入 Frontmatter改为追加到提示词正文Frontmatter 中有路径但文件不存在错误——必须移除 references 字段这条规则在 workflow.md 第 5.3 步被再次强调写入 Frontmatter 之前必须先执行test -f references/NN-ref-{slug}.png验证文件存在。文件缺失却仍保留字段属于流程错误会导致引用失效。3.2 三种引用用法usage用法说明生成动作direct主要视觉参考直接决定画面传给后端的--ref参数如--ref references/01-ref-brand.pngstyle只参考风格特征将风格描述写入提示词文本palette只提取配色方案将色值写入提示词中的 COLORS 部分三者的处理差异在 workflow.md 5.3 步有明确映射表direct→--ref路径style→ 分析后追加风格特征如 Style: clean lines, gradient backgrounds...palette→ 提取色值追加如 Colors: #E8756D coral, #7ECFC0 mint...。同时还要考虑后端能力如果选中的图像生成后端不支持--ref则将参考图转换为文字描述追加到提示词中。3.3 无文件时口头提取的风格/配色直接写入正文如果用户无法提供参考图文件例如只在对话中粘贴了图片工作流workflow.md Step 1.0要求视觉提取颜色、风格、构图将其写入references/extracted-style.md不得写入 Frontmatter而是直接追加到提示词正文COLORS (from reference): - Primary: #E8756D coral - Secondary: #7ECFC0 mint ... STYLE (from reference): - Clean lines, minimal shadows - Gradient backgrounds ...四、默认构图要求适用于所有提示词无论何种类型与风格以下构图要求默认应用到所有提示词要求说明Clean composition简洁构图无视觉杂乱White space充足的留白元素周围有呼吸空间No complex backgrounds仅纯色或微妙渐变背景避免繁杂纹理Centered or content-appropriate主视觉元素居中或按内容需求摆放Matching graphics图形元素与内容主题一致Highlight core info通过留白引导视线聚焦关键信息因此所有提示词都要附加这一句标准指令Clean composition with generous white space. Simple or no background. Main elements centered or positioned by content needs.这一默认约束与 sketch-notes.md 等风格文档中的 Generous white space、airy, never crowded 规则互为印证——构图要求是贯穿所有风格层面的共性底线。五、颜色规范色值是渲染指令不是文字内容提示词中的颜色使用十六进制色码仅为渲染引导——它告诉模型用哪些颜色而不是让模型把颜色名称画在画面上。⚠️ 关键风险图像生成模型有时会把颜色名称与色值当作可见文字标签渲染进画面例如在图上画出一行 Macaron Blue #A8D8EA。必须加以阻止。因此任何包含 COLORS 段的提示词都要附加Color values (#hex) and color names are rendering guidance only — do NOT display color names, hex codes, or palette labels as visible text in the image.这条约束在所有调色板文档中都有对应表述。例如 macaron.md 的 Semantic Constraint 明确写道 Do NOT render color names, hex codes, or role labels as visible text in the imagemono-ink.md 同样有该约束。这也解释了 SKILL.md 中禁止用程序手段覆盖已生成位图上的文字这一规则——文字错了就基于修正后的提示词重新生成而不是后期修补。六、人物渲染与画面文字规范6.1 人物渲染当画面需要出现人物时准则说明Style简化的卡通剪影或符号化表情Avoid写实人物、精细面部Diversity出现多人时体型尽量多样Emotion通过姿态和简单手势表达情绪所有包含人物的提示词附加Human figures: simplified stylized silhouettes or symbolic representations, not photorealistic.在 ink-notes.md 的 Visual Elements 中可以找到更细的实现方式使用带表情姿态的简笔小人stick-figure characters with expressive poses指点、思考、行走并在人物上方添加角色标签如 Tech Lead、Operator——人物渲染规范与风格文档中的角色标签机制是一套体系。6.2 画面文字Text in Illustrations元素准则Size大号、醒目、一眼可读Style优先手写体传递温度Content只放简洁关键词与核心概念Language与文章语言一致含文字的提示词附加Text should be large and prominent with handwritten-style fonts. Keep minimal, focus on keywords.这同样与风格文档呼应sketch-notes.md 要求 Short keyword labels inside boxes — never long paragraphs、ALL text must be hand-lettered — no computer fontsink-notes.md 也要求 Keep all type hand-lettered — no computer-generated fonts。画面文字语言默认跟随文章语言这也是 SKILL.md 在确认环节Step 3 Q5询问Image Text Language的原因。七、六大原则好提示词必须具备的要素无论采用哪个模板一份合格的提示词必须包含以下 6 个要素Layout Structure First先定布局结构描述构图、分区、视觉流动方向Specific Data/Labels具体数据/标签使用文章中的真实数字、术语而非占位符Visual Relationships视觉关系元素之间如何连接Semantic Colors语义化配色基于含义选色红色警告、绿色高效Style Characteristics风格特征线条处理、质感、情绪Aspect Ratio宽高比以比例和复杂度收尾这 6 条原则与 workflow.md 5.1 步的Prompt quality requirements完全对应那里要求每个提示词必须包含Layout整体构图 grid/radial/hierarchical/left-right/top-down、ZONES每个视觉区域的具体内容、LABELS文章中的真实数字/术语/指标/引语、COLORS带语义的十六进制色码、STYLE线条/纹理/情绪/人物渲染、ASPECT宽高比如16:9。八、六类类型化模板Type-Specific Templates8.1 Infographic信息图——数据与指标[Title] - Data Visualization Layout: [grid/radial/hierarchical] ZONES: - Zone 1: [data point with specific values] - Zone 2: [comparison with metrics] - Zone 3: [summary/conclusion] LABELS: [specific numbers, percentages, terms from article] COLORS: [semantic color mapping] STYLE: [style characteristics] ASPECT: 16:9Infographic sketch-notes macaron 调色板默认组合 /hand-drawn-edu预设Single-page hand-drawn educational infographic in a clean presentation style. Warm cream paper background, black hand-drawn lines with slight wobble, soft pastel color blocks. Feels simple, friendly, and easy to understand at a glance. Diagram-style visuals ONLY — no realistic or photographic images. PALETTE: macaron — soft pastel blocks on warm cream COLORS: Warm Cream background (#F5F0E8); Black (#1A1A1A) for ALL lines, text, arrows, and doodles; section fills in Light Blue (#A8D8EA), Mint Green (#B5E5CF), Lavender (#D5C6E0), Peach (#FFD5C2); Coral Red (#E8655A) sparingly for one or two emphasis points only. LAYOUT (top → bottom): - TOP: Bold hand-lettered title, oversized, slightly wobbly, with an optional decorative underline or small doodle. - MIDDLE: 2–6 rounded-rectangle info boxes arranged in a clean grid, row, or radial pattern. Each box one section, one pastel fill color, one simple icon or sketchy cartoon element, one short keyword/phrase. Hand-drawn arrows connect related zones. - BOTTOM: One short hand-lettered takeaway sentence summarizing the main idea. ELEMENTS: Rounded info boxes with clear sectioning, wavy/straight hand-drawn arrows with small inline labels, simple icons and sketchy cartoon elements (stick figures, tools, objects), small doodle decorations (stars, sparkles, underlines, dots, asterisks) used sparingly. STYLE: Minimal, well-organized, airy. Color fills dont completely fill outlines (slight hand-painted overshoot). ALL text hand-lettered — no computer fonts. Short labels and keywords only, never long paragraphs. Generous white space between sections.Infographic vector-illustrationFlat vector illustration infographic. Clean black outlines on all elements. COLORS: Cream background (#F5F0E6), Coral Red (#E07A5F), Mint Green (#81B29A), Mustard Yellow (#F2CC8F) ELEMENTS: Geometric simplified icons, no gradients, playful decorative elements (dots, stars)Infographic vector-illustration warm 调色板Flat vector illustration infographic. Clean black outlines on all elements. PALETTE OVERRIDE (warm): Warm-only color palette, no cool colors. COLORS: Soft Peach background (#FFECD2), Warm Orange (#ED8936), Terracotta (#C05621), Golden Yellow (#F6AD55), Deep Brown (#744210) ELEMENTS: Geometric simplified icons, no gradients, rounded corners, modular card layout, consistent icon style从实现层面看这个模板对应 styles.md 中 infographic sketch-notes (default) 的特征描述暖奶油纸背景、黑色手绘线、2–6 个圆角马卡龙色信息块、顶部大号手绘标题、底部一句话总结。模板中的每一行都是对风格特征的结构化转写。8.2 Scene场景——叙事与情绪[Title] - Atmospheric Scene FOCAL POINT: [main subject] ATMOSPHERE: [lighting, mood, environment] MOOD: [emotion to convey] COLOR TEMPERATURE: [warm/cool/neutral] STYLE: [style characteristics] ASPECT: 16:9场景类型适合叙事、情感类内容对应的风格首选 warm / watercolor见 styles.md 的 Type × Style 兼容矩阵scene warm / watercolor 为 ✓✓ 高度推荐而 scene sketch-notes / blueprint 为 ✗ 不推荐。8.3 Flowchart流程图——流程与工作流[Title] - Process Flow Layout: [left-right/top-down/circular] STEPS: 1. [Step name] - [brief description] 2. [Step name] - [brief description] ... CONNECTIONS: [arrow types, decision points] STYLE: [style characteristics] ASPECT: 16:9Flowchart vector-illustrationFlat vector flowchart with bold arrows and geometric step containers. COLORS: Cream background (#F5F0E6), steps in Coral/Mint/Mustard, black outlines ELEMENTS: Rounded rectangles, thick arrows, simple icons per stepFlowchart sketch-notes macaron 调色板Hand-drawn educational flowchart on warm cream paper. Slight wobble on all lines. PALETTE: macaron — soft pastel color blocks COLORS: Warm Cream background (#F5F0E8), zone fills in Macaron Blue (#A8D8EA), Lavender (#D5C6E0), Mint (#B5E5CF), Coral Red (#E8655A) for emphasis ELEMENTS: Rounded cards with dashed/solid borders, wavy hand-drawn arrows with labels, simple stick-figure characters, doodle decorations (stars, underlines) STYLE: Color fills dont completely fill outlines, hand-drawn lettering, generous white spaceFlowchart ink-notes mono-ink 调色板Professional hand-drawn visual-note flowchart on pure white. Black ink line work with slight wobble, à la Mike Rohde sketchnoting. PALETTE: mono-ink — black ink dominant, sparse semantic accents COLORS: Pure White background (#FFFFFF), Near Black (#1A1A1A) for all lines, text, and figures; Coral Red (#E8655A) only for risk/emphasis, Muted Teal (#5FA8A8) only for positive/solution states ELEMENTS: Left-to-right stage boxes with rounded-rect frames, wavy hand-drawn arrows between stages, simple stick-figure characters with role labels above (e.g., ML Engineer, Team Lead), dashed-border box for future/empty stage, small doodle icons per stage STYLE: Hand-lettered titles (bold, oversized), handwritten stage labels and annotations, generous white space, bottom tagline summarizing takeaway注意 ink-notes 变体中dashed-border box for future/empty stage虚线框表示未来/空状态——这正是 ink-notes.md 中 Visual Elements 清单里的标准元素。mono-ink 调色板的语义色分工珊瑚红风险/强调、灰青正向/解决也与 mono-ink.md 的角色定义一一对应。8.4 Comparison对比——并排对照[Title] - Comparison View LEFT SIDE - [Option A]: - [Point 1] - [Point 2] RIGHT SIDE - [Option B]: - [Point 1] - [Point 2] DIVIDER: [visual separator] STYLE: [style characteristics] ASPECT: 16:9Comparison vector-illustrationFlat vector comparison with split layout. Clear visual separation. COLORS: Left side Coral (#E07A5F), Right side Mint (#81B29A), cream background ELEMENTS: Bold icons, black outlines, centered divider lineComparison vector-illustration warm 调色板Flat vector comparison with split layout. Clear visual separation. PALETTE OVERRIDE (warm): Warm-only color palette, no cool colors. COLORS: Left side Warm Orange (#ED8936), Right side Terracotta (#C05621), Soft Peach background (#FFECD2), Deep Brown (#744210) accents ELEMENTS: Bold icons, black outlines, centered divider lineComparison ink-notes mono-ink 调色板Before/After、新旧对比Professional hand-drawn sketchnote comparison on pure white. Black ink line work with slight wobble, à la Mike Rohde sketchnoting. PALETTE: mono-ink — black ink dominant, sparse semantic accents COLORS: Pure White background (#FFFFFF), Near Black (#1A1A1A) for all outlines, text, figures, arrows; Coral Red (#E8655A) reserved for risks/gaps (left/Before side); Muted Teal (#5FA8A8) reserved for positives (right/After side). Color accents under 10% of canvas. LAYOUT: Left | Right split with vertical hand-drawn divider. Hand-lettered Before label (top-left) and After label (top-right). LEFT SIDE: Stick figure(s) with role label above, speech bubble showing the pain point, bulleted pain-point list in handwritten text. RIGHT SIDE: Stick figure(s) showing the new state, bulleted improvement list, small positive-action icons. BRIDGE: Curved hand-drawn mindset shift arrow bridging left → right with small inline label describing the shift. BOTTOM: Single-line hand-lettered tagline summarizing the takeaway. STYLE: Hand-lettered headings (bold, oversized), handwritten body annotations, generous white space, no computer fonts, no gradients, no shadows.这个对比模板是 mono-ink 体系的旗舰示例色彩占比低于画布 10%来自 mono-ink.md 的硬约束mindset shift 桥接箭头与底部单行 tagline来自 ink-notes.md 的标准元素。仓库中ink-notes-compare预设comparison ink-notes mono-ink见 style-presets.md正是为 Before/After 文章、新旧对比、心智转变叙事准备的。8.5 Framework框架——模型与架构[Title] - Conceptual Framework STRUCTURE: [hierarchical/network/matrix] NODES: - [Concept 1] - [role] - [Concept 2] - [role] RELATIONSHIPS: [how nodes connect] STYLE: [style characteristics] ASPECT: 16:9Framework vector-illustrationFlat vector framework diagram with geometric nodes and bold connectors. COLORS: Cream background (#F5F0E6), nodes in Coral/Mint/Mustard/Blue, black outlines ELEMENTS: Rounded rectangles or circles for nodes, thick connecting linesFramework vector-illustration warm 调色板Flat vector framework diagram with geometric nodes and bold connectors. PALETTE OVERRIDE (warm): Warm-only color palette, no cool colors. COLORS: Soft Peach background (#FFECD2), nodes in Warm Orange (#ED8936), Terracotta (#C05621), Golden Yellow (#F6AD55), black outlines ELEMENTS: Rounded rectangles or circles for nodes, thick connecting linesFramework ink-notes mono-ink 调色板指挥中心 / OS 类比Professional hand-drawn sketchnote framework on pure white. Black ink line work with slight wobble, à la Mike Rohde sketchnoting. PALETTE: mono-ink — black ink dominant, sparse semantic accents COLORS: Pure White background (#FFFFFF), Near Black (#1A1A1A) for all lines, text, figures; Dusty Lavender (#9B8AB5) for neutral category tags only; Coral Red (#E8655A) for emphasis sparingly. Color accents under 10%. STRUCTURE: Central rounded-rectangle frame as the system with hand-lettered title inside. Inner layer of labeled sub-components (node labels above each). Outer layer of feeder arrows from stick-figure operators/users with role labels. ELEMENTS: Stick figures at the edges with role tags (Team Lead, Operator), wavy hand-drawn connector arrows with small inline labels, small doodle icons per component, dashed-border placeholder(s) for future/empty capabilities. BOTTOM: Single-line hand-lettered tagline. STYLE: Hand-lettered headings, handwritten annotations, generous white space, no computer fonts, no gradients.该模板中的 Dusty Lavender淡紫灰仅用于中性分类标签这一用法直接取自 mono-ink.md 的第三个语义色角色对应的ink-notes-framework预设style-presets.md用于系统类比、指挥中心图、架构隐喻、技术宣言类文章。8.6 Timeline时间线——历史与演进[Title] - Chronological View DIRECTION: [horizontal/vertical] EVENTS: - [Date/Period 1]: [milestone] - [Date/Period 2]: [milestone] MARKERS: [visual indicators] STYLE: [style characteristics] ASPECT: 16:9时间线类型在 Type × Style 兼容矩阵styles.md中兼容面最广elegant、sketch-notes、warm、editorial 均为推荐项内容信号匹配时history / evolution 类文章预设推荐为historytimeline elegant或evolutiontimeline warm。九、Screen-Print 风格覆盖当style: screen-print时用以下段落替换标准风格指令Screen print / silkscreen poster art. Flat color blocks, NO gradients. COLORS: 2-5 colors maximum. [Choose from style palette or duotone pair] TEXTURE: Halftone dot patterns, slight color layer misregistration, paper grain COMPOSITION: Bold silhouettes, geometric framing, negative space as storytelling element FIGURES: Silhouettes only, no detailed faces, stencil-cut edges TYPOGRAPHY: Bold condensed sans-serif integrated into composition (not overlaid)screen-print 采用 2–5 色的双色调duotone体系详见 screen-print.md 中预置的四组双色调组合Orange Teal、Red Cream、Blue Gold、Crimson Navy。以下是三个已配好的场景变体Scene screen-printConceptual poster scene. Single symbolic focal point, NOT literal illustration. COLORS: Duotone pair (e.g., Burnt Orange #E8751A Deep Teal #0A6E6E) on Off-Black #121212 COMPOSITION: Centered silhouette or geometric frame, 60% negative space TEXTURE: Halftone dots, paper grain, slight print misregistrationComparison screen-printSplit poster composition. Each side dominated by one color from duotone pair. LEFT: [Color A] side with silhouette/icon for [Option A] RIGHT: [Color B] side with silhouette/icon for [Option B] DIVIDER: Geometric shape or negative space boundary TEXTURE: Halftone transitions between sidesscreen-print 对应的内容信号是观点/社论、文化、哲学、戏剧化叙事、电影感见 styles.md 的 Auto Selection by Content Signals 表仓库预设opinion-piece、editorial-poster、cinematic均属此体系。十、调色板覆盖Palette Override规则当一个调色板通过--palette或预设指定时它会覆盖风格的默认颜色。执行顺序如下读取风格文件 → 获取渲染规则Visual Elements、Style Rules、线条处理读取调色板文件palettes/palette.md→ 获取 Colors Background调色板 Colors替换风格的默认 Color Palette调色板 Background替换风格的背景色保留风格的纹理描述构建提示词风格渲染指令 调色板颜色指定调色板时Prompt Frontmatter 会包含palette字段--- illustration_id: 01 type: infographic style: vector-illustration palette: macaron ---示例vector-illustrationmacaron调色板Flat vector illustration infographic. Clean black outlines on all elements. PALETTE: macaron — soft pastel color blocks COLORS: Warm Cream background (#F5F0E8), Macaron Blue (#A8D8EA), Mint (#B5E5CF), Lavender (#D5C6E0), Peach (#FFD5C2), Coral Red (#E8655A) for emphasis ELEMENTS: Geometric simplified icons, no gradients, playful decorative elements未指定调色板时则使用风格内置的默认 Color Palette例如 sketch-notes 的默认调色板就是 macaron 马卡龙系列见 sketch-notes.md。这一机制与 SKILL.md 中三维度体系Type × Style × Palette中的第三维 Palette 完全对应也与 styles.md 的 Palette Gallerymacaron / warm / neon / mono-ink 四款一致。十一、需要避免的常见错误模糊描述如 a nice image——缺少具体性字面化比喻插画如把电锯切西瓜直接画出来而不画其背后的抽象概念缺少具体的标签/注释通用装饰性元素关于字面化比喻这条SKILL.md Step 2 中有对应的硬性规定Metaphors → visualize underlying concept, NOT literal image比喻 → 可视化底层概念而非字面画面workflow.md Step 2.2 也重申了同样规则。这条原则必须体现在提示词构造中ZONES / LABELS 描述的是概念本身的结构化表达。十二、水印集成如果 EXTEND.md 偏好设置中启用了水印watermark在提示词末尾追加Include a subtle watermark [content] positioned at [position].workflow.md 5.4 步确认了这一点水印以提示词指令的形式参与构造而不是在生成后用程序覆盖位图。十三、提示词构造在工作流中的位置提示词构造位于 SKILL.md 工作流 Step 5 的起始环节完整链路为Step 1 预检读取 EXTEND.md 偏好语言、首选风格、输出目录、水印、批大小处理参考图Step 2 内容分析判定内容类型、抽取 2–5 个核心论点、识别插图位置Step 3 确认设置确认 preset/type、density、style、palette、语言Step 4 生成 Outline产出outline.md包含每张插画的位置、目的、视觉内容、文件名Step 5.1 创建提示词按本文规范为 Outline 中每张插画写prompts/NN-{type}-{slug}.md含 Frontmatter 与类型化模板正文——这是生成前必须完成的阻塞步骤Step 5.2–5.5 生成选择后端、处理 references、应用水印、批量生成Step 6 收尾将图片以相对路径插入文章段落之后命令行入口usage.md如/baoyu-article-illustrator path/to/article.md --type infographic --style blueprint /baoyu-article-illustrator path/to/article.md --preset tech-explainer /baoyu-article-illustrator path/to/article.md --preset hand-drawn-edu --density rich--preset会一次性展开为 type style palette 组合如hand-drawn-edu infographic sketch-notes macaronink-notes-compare comparison ink-notes mono-ink完整预设表见 style-presets.md用户仍可通过显式--type/--style覆盖预设的任意维度。小结baoyu-article-illustrator 的提示词构造规范本质上是把优秀的图像生成提示词工程化为一套可重复的模板体系YAML Frontmatter 承载元数据与参考图引用六类类型化模板固定信息结构ZONES / LABELS / COLORS / STYLE / ASPECT风格文件与调色板文件提供渲染细节与配色来源默认约束构图、颜色防串字、人物简化、手写文字兜底稳定性。掌握这套规范后配合该技能的 SKILL.md、workflow.md 与 style-presets.md即可为任意文章产出风格统一、数据准确、可复现的配图。赞分享AI 技能AI 插件【免费下载链接】baoyu-skills项目地址https://gitcode.com/gh_mirrors/ba/baoyu-skills点击查看免费下载相关推荐baoyu-article-illustrator 的 notion 风格指南极简手绘线条插画的设计规范与实战应用baoyu article illustrator 的 notion 风格指南极简手绘线条插画的设计规范与实战应用 notion 是 baoyu articlAI 技能AI 插件UFO 提示词体系全解从 YAML 模板到 Prompter 构造链路的完整指南UFO 提示词体系全解从 YAML 模板到 Prompter 构造链路的完整指南 UFOUI Focused Agent框架中的全部提示词均统一存放于 u人工智能AI Agent自主智能体GUI 自动化Agent 编排多智能体RAGMac Mouse Fix 使用教程一步步让第三方鼠标在 macOS 上拥有原生手感Mac Mouse Fix 使用教程一步步让第三方鼠标在 macOS 上拥有原生手感 Mac Mouse Fix 是一款专为 macOS 打造的鼠标增强工具AI 技能AI 插件上一篇Open-LLM-VTuber 从零实战10 分钟在本地跑通离线 AI 虚拟主播与语音交互下一篇CANN/asc-devkit矢量压缩API创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考