Token导航 LogoToken导航TokenDH.com
图像处理敏感数据clawhub未标认证来源可访问clear审计通过

imini-imagegen伊米尼图像生成器

Agent Skill

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

总安装

3,011

周安装

128

GitHub Stars

1

下载量

1,055
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:imini-imagegen(伊米尼图像生成器)
来源仓库:https://github.com/horseson2018/imini-imagegen
安装命令:
openclaw skills install imini-imagegen
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install imini-imagegen

简介

imini-imagegen 调用 imini 图像生成 API 创建光栅图像,支持文生图与图生图。

  • 适用于 OpenClaw 中图像编辑、视觉素材处理或 AI 工作流辅助。
  • 通过 clawhub 安装后按提示输入关键词即可生成图片。
  • 需关注输入图片版权、输出格式及模型能力边界,避免违规内容。
  • 建议核对授权条款与内容审核规则后再用于公开展示或商业用途。

SKILL.md

name
imini-imagegen
description
Use this skill when the user wants to generate raster images through the imini image generation API, including text-to-image and image-guided generation with public image URLs. If the user does not specify a model, ask them to choose between google/nano-banana, google/nano-banana-pro, and google/nano-banana-2 before running generation. Do not use it for SVG/icon/front-end drawing work, or when the user is only discussing prompts without asking to actually run image generation.
metadata

IMINI ImageGen

Generate images through the imini image generation API using a local API key from environment variables. This skill supports text-to-image and image-guided generation with public image URLs, asks the user to choose a model when they did not specify one, then polls the async task until final images are ready and saved into the workspace.

When To Use

Use this skill when:

  • The user wants to generate an image, poster, cover, concept image, or other raster output.
  • The user provides a prompt and wants you to actually call the imini API.
  • The user provides one or more public image URLs as references for style or content guidance.

Do not use this skill when:

  • The user wants SVG, icons, diagrams, or HTML/CSS visuals.
  • The task is only to brainstorm or rewrite prompts without actually generating images.
  • The only reference input is a local file path; v1 supports public URLs only.

Configuration

The script reads configuration from environment variables. In OpenClaw, declare IMINI_IMAGE_API_KEY in the skill config so the registry and runtime requirements stay aligned.

  • IMINI_IMAGE_API_KEY (required)
  • IMINI_IMAGE_API_BASE_URL (optional, default https://openapi.imini.ai/imini/router)
  • IMINI_IMAGE_TIMEOUT (optional, default 300)
  • IMINI_IMAGE_POLL_INTERVAL (optional, default 2)

Do not put real keys into this skill directory, SKILL.md, or command arguments. Setup details live in references/config.md.

Workflow

  1. Confirm the request is actual image generation, not vector/UI drawing.
  2. Collect the prompt.
  3. Optionally collect:

- model - aspect_ratio - public image URLs - reference mode if the user clearly wants style instead of default asset

  1. If the user did not specify a model, ask before generating:
Which model do you want to use?
1. google/nano-banana: faster and lower cost for standard image generation
2. google/nano-banana-pro: higher quality and higher resolution support
3. google/nano-banana-2: most capable option with more aspect ratios and resolutions

If you are not sure, I recommend starting with google/nano-banana.

Do not call the API until the user chooses a model, unless they explicitly ask you to use the default recommendation.

  1. Run the bundled script:
python3 /absolute/path/to/imini-imagegen/scripts/generate_image.py \
  --model google/nano-banana \
  --prompt "A shiba inu wearing a spacesuit and standing on the moon, 3D cartoon style" \
  --aspect-ratio 1:1 \
  --out-dir output/imagegen

With references:

python3 /absolute/path/to/imini-imagegen/scripts/generate_image.py \
  --model google/nano-banana \
  --prompt "Keep the main composition and turn it into a cinematic poster with dramatic lighting" \
  --image-url "https://example.com/ref1.jpg" \
  --reference-type asset \
  --out-dir output/imagegen
  1. Wait for the script to:

- submit POST /v1/images/generate - poll GET /v1/images/tasks/{task_id} - download final images[].url results

  1. Report:

- final saved file paths - task status - failure reason if the task fails

Input Rules

  • prompt is required.
  • Supported models:

- google/nano-banana - google/nano-banana-pro - google/nano-banana-2

  • If the user did not specify a model, ask them to choose before generating.
  • If the user asks for a recommendation, prefer google/nano-banana as the default low-friction option.
  • resolution defaults to 1K. Higher values should only be used when the chosen model supports them.
  • aspect_ratio is optional. Allowed values are documented in references/api.md.
  • --image-url count limits depend on the chosen model.
  • v1 accepts only public image URLs for references.
  • reference_type defaults to asset; use style only when the user clearly wants style transfer behavior.

Failure Handling

If generation fails, check in this order:

  1. IMINI_IMAGE_API_KEY is present.
  2. The API returned auth or validation errors.
  3. Reference URLs are public and reachable.
  4. The task status changed to failed.
  5. The task timed out before completion.
  6. The task succeeded but images was empty or downloads failed.

For API shapes, status values, and exact request fields, read references/api.md.

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenClaw

90%
按下载量换算950

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills