Token导航 LogoToken导航TokenDH.com
图像处理敏感数据github未标认证来源可访问许可证需确认审计提醒

image-generation图像生成

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

13,029

周安装

522

GitHub Stars

公开资料未说明

下载量

4,218
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:image-generation(图像生成)
来源仓库:https://github.com/zc277584121/marketing-skills
仓库路径:skills/image-generation
安装命令:
npx skills add https://github.com/zc277584121/marketing-skills --skill image-generation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zc277584121/marketing-skills --skill image-generation

简介

image-generation 用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。

  • 适合根据文本生成图片、处理背景、整理视觉提示词或调用图像工具。
  • 使用时需确认输入图片、版权来源、输出格式和模型限制。
  • 涉及人物、品牌或公开展示素材时,应核对授权、真实性和内容合规边界。
  • 可结合原始仓库和 SKILL.md 文档核验实际功能与限制条件。

SKILL.md

Image Generation Skill

Generate illustration images for blog posts, documentation, and technical articles using Google Gemini's Nano Banana 2 (gemini-3.1-flash-image-preview) model.

Prerequisite: GEMINI_API_KEY must be set in environment variables.

When to Use

  • User asks to generate an illustration, diagram, or concept image
  • User is writing an article and needs visual explanations for concepts or workflows
  • User explicitly asks for AI-generated images

Step 1: Determine the Image Requirements

Before generating, clarify:

  1. What to illustrate — the concept, architecture, flow, or scene
  2. Language — default to English for both prompt and text in image. Only use other languages if the user explicitly requests it
  3. Save location — see "Output Path" section below
  4. Style/color preferences — if user has specific needs, otherwise use defaults

Step 2: Craft the Prompt

Default Style Prefix (always prepended unless user overrides)

The script automatically prepends this style prefix:

Use a clean, modern color palette with soft tones. Minimalist flat illustration style with clear visual hierarchy. Professional and polished look suitable for technical blog articles. No photorealistic rendering. No excessive gradients or shadows.

Prompt Writing Guidelines

  • Be specific and descriptive about the visual elements
  • For technical concepts: describe the components, their relationships, and layout
  • For architecture diagrams: list the layers/components and how they connect
  • For flow diagrams: describe the steps and direction of flow
  • If text labels are needed in the image, spell them out explicitly in the prompt
  • Default language is English. Only write the prompt and request in-image text in another language if the user specifically asks

Example Prompts

Architecture diagram:

A system architecture diagram showing: User sends query to an API Gateway,
which routes to a Vector Database (labeled "Milvus") and an LLM service.
The Vector Database returns relevant documents, which are combined with the
original query and sent to the LLM for final response generation.
Arrows show data flow direction. Each component is a rounded rectangle with
an icon and label.

Concept illustration:

A visual comparison of keyword search vs semantic search. Left side shows
keyword search with exact word matching (highlighted matching words).
Right side shows semantic search with a brain icon understanding meaning
and connecting related concepts with dotted lines. A dividing line separates
the two approaches.

Step 3: Generate the Image

Run the script:

python ${CLAUDE_SKILL_ROOT}/scripts/generate_image.py \
  --prompt "your prompt here" \
  --output "/path/to/save/image.png"

Default Parameters

ParameterDefaultNotes
Modelgemini-3.1-flash-image-preview (Nano Banana 2)Fastest with good quality
Aspect ratio3:2Landscape (width:height = 3:2), ideal for article illustrations
Image size1KGood balance of quality and cost
StyleMinimal, clean, soft tonesAuto-prepended to prompt
LanguageEnglishPrompt and in-image text

Available Options

--model          Model ID (gemini-3.1-flash-image-preview, gemini-3-pro-image-preview, gemini-2.5-flash-image)
--aspect-ratio   1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9, etc.
--image-size     512, 1K, 2K, 4K
--style-prefix   Custom style prefix (replaces the default)
--no-style       Skip default style prefix entirely

When to Change Defaults

ScenarioChange
User wants higher quality--image-size 2K
User wants best quality--model gemini-3-pro-image-preview --image-size 2K
Social media banner--aspect-ratio 16:9
Portrait/vertical image--aspect-ratio 3:4 or --aspect-ratio 9:16
Square image (icon, avatar)--aspect-ratio 1:1
User has their own style--style-prefix "your style" or --no-style
Non-English contentWrite prompt in target language, no parameter change needed

Step 4: Determine Output Path

Follow this priority order to decide where to save the generated image:

Priority 1: Context from Current Conversation

If the user is working on a specific markdown file or article:

  1. Check where existing images in that article are stored (look for ![ image references in the .md file)
  2. Save the new image in the same directory as the existing images
  3. Use a descriptive filename that matches the naming convention of existing images

Example: if the article has ![](images/architecture-overview.png), save to the same images/ directory.

Priority 2: Project Image Directory

If no specific article context but working within a project:

  1. Look for existing image directories: images/, assets/, static/, img/, figures/
  2. Save in the most appropriate existing directory
  3. If none exists, create an images/ directory at the project root or under the relevant content directory

Priority 3: Fallback

If no clear project context:

  1. Save to the current working directory
  2. Use a descriptive filename: concept-name-illustration.png

Filename Convention

  • Use lowercase with hyphens: vector-search-architecture.png
  • Be descriptive: prefer rag-pipeline-overview.png over image1.png
  • Match existing naming patterns in the project if any

Step 5: Verify the Result

After generating:

  1. Read the image file to visually verify it matches the user's request
  2. If the result is not satisfactory, refine the prompt and regenerate
  3. If the image will be inserted into a markdown file, suggest the markdown syntax: ![alt text](relative/path/to/image.png)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37%
按下载量换算1,561

Claude

31.41%
按下载量换算1,325

Cursor

17.26%
按下载量换算728

Gemini CLI

9.04%
按下载量换算381

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills