ai-image-generation

v1.0.0

Generate AI images with FLUX, Gemini, Grok, Seedream, Reve and 50+ models via SkillBoss API Hub. Models: FLUX Dev LoRA, FLUX.2 Klein LoRA, Gemini 3 Pro Image...

0· 76·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for quincygunter/quincy-ai-image-generation.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "ai-image-generation" (quincygunter/quincy-ai-image-generation) from ClawHub.
Skill page: https://clawhub.ai/quincygunter/quincy-ai-image-generation
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install quincy-ai-image-generation

ClawHub CLI

Package manager switcher

npx clawhub@latest install quincy-ai-image-generation
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim image generation via SkillBoss API Hub and the SKILL.md exclusively shows calls to https://api.heybossai.com with a single SKILLBOSS_API_KEY — this credential is appropriate and proportional to the stated purpose.
Instruction Scope
SKILL.md provides example Python requests to the API and discovery/usage examples. It does not instruct reading unrelated files, system credentials, or sending data to unexpected endpoints beyond the declared API.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requires a single env var (SKILLBOSS_API_KEY), which matches the described third-party API usage and is proportionate for image-generation functionality.
Persistence & Privilege
always is false and the skill does not request persistent system-wide changes. The skill allows autonomous invocation by default, which is normal platform behavior and not in itself a red flag.
Assessment
This skill is internally coherent, but you should only install it if you trust the remote provider (api.heybossai.com). Before installing: (1) Ensure the SKILLBOSS_API_KEY you provide is limited in scope and can be rotated; (2) review the provider's privacy, billing, and content policies (uploads/prompts and generated images are sent to their servers); (3) avoid sending sensitive or confidential prompts or images to the service; (4) monitor usage and costs tied to the API key; and (5) if you need stronger isolation, run calls to the API from a controlled environment rather than sharing keys with broad-access agents.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ag1s9a6dqwfa2kwcy6pz3f184v5t9
76downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

AI Image Generation

Generate images with 50+ AI models via SkillBoss API Hub.

Quick Start

import requests, os

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
        f"{API_BASE}/pilot",
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
        json=body,
        timeout=60,
    )
    return r.json()

# Generate an image (auto-routed to best model)
result = pilot({"type": "image", "inputs": {"prompt": "a cat astronaut in space"}, "prefer": "quality"})
image_url = result["result"]["image_url"]
print(image_url)

Available Models

SkillBoss API Hub 自动路由至最优图像生成模型,支持 50+ 模型,包括:

ModelBest For
FLUX Dev LoRAHigh quality with custom styles
FLUX.2 Klein LoRAFast with LoRA support (4B/9B)
Gemini 3 ProGoogle's latest
Gemini 2.5 FlashFast Google model
Grok ImaginexAI's model, multiple aspects
Seedream 4.52K-4K cinematic quality
Seedream 4.0High quality 2K-4K
Seedream 3.0Accurate text rendering
ReveNatural language editing, text rendering
ImagineArt 1.5 ProUltra-high-fidelity 4K
Topaz UpscalerProfessional upscaling

Browse All Image Models

# Discover 模式:查询所有支持的图像生成模型
result = pilot({"discover": True, "keyword": "image"})
print(result)

Examples

Text-to-Image (Quality)

result = pilot({
    "type": "image",
    "inputs": {"prompt": "professional product photo of a coffee mug, studio lighting"},
    "prefer": "quality"
})
image_url = result["result"]["image_url"]

Fast Generation

result = pilot({
    "type": "image",
    "inputs": {"prompt": "sunset over mountains"},
    "prefer": "balanced"
})
image_url = result["result"]["image_url"]

Photorealistic Landscape

result = pilot({
    "type": "image",
    "inputs": {"prompt": "photorealistic landscape with mountains and lake"},
    "prefer": "quality"
})
image_url = result["result"]["image_url"]

With Aspect Ratio

result = pilot({
    "type": "image",
    "inputs": {
        "prompt": "cyberpunk city at night",
        "aspect_ratio": "16:9"
    },
    "prefer": "balanced"
})
image_url = result["result"]["image_url"]

Text Rendering in Image

result = pilot({
    "type": "image",
    "inputs": {"prompt": "A poster that says HELLO WORLD in bold letters"},
    "prefer": "quality"
})
image_url = result["result"]["image_url"]

Cinematic Portrait (4K Quality)

result = pilot({
    "type": "image",
    "inputs": {"prompt": "cinematic portrait of a woman, golden hour lighting"},
    "prefer": "quality"
})
image_url = result["result"]["image_url"]

Image Upscaling

result = pilot({
    "type": "image",
    "inputs": {
        "prompt": "upscale",
        "image_url": "https://example.com/image.jpg"
    },
    "prefer": "quality"
})
image_url = result["result"]["image_url"]

Response 格式

# 标准 response 解析
result = pilot({"type": "image", "inputs": {"prompt": "..."}, "prefer": "quality"})
image_url = result["result"]["image_url"]
# 或(部分模型返回数组格式)
image_url = result["result"]["images"][0]["url"]

环境变量

变量说明
SKILLBOSS_API_KEYSkillBoss API Hub 统一密钥

Comments

Loading comments...