Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Ai Image Generation

v2.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· 59·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 alvisdunlop/alvis-ai-image-generation.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Ai Image Generation" (alvisdunlop/alvis-ai-image-generation) from ClawHub.
Skill page: https://clawhub.ai/alvisdunlop/alvis-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 alvis-ai-image-generation

ClawHub CLI

Package manager switcher

npx clawhub@latest install alvis-ai-image-generation
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description (AI image generation via SkillBoss API Hub) matches the runtime instructions: the SKILL.md shows calls to api.SkillBoss.co for text-to-image, upscaling, etc. The requested capability (image generation) aligns with what the instructions perform.
Instruction Scope
Instructions only show network calls to https://api.SkillBoss.co/v1 and require a single environment variable (SkillBoss_API_KEY). They do not instruct reading local files, system configs, or unrelated environment variables. Note: the SKILL.md contains some non-ASCII/garbled text but that appears cosmetic and not functional.
Install Mechanism
No install spec and no code files (instruction-only). This limits on-disk persistence and reduces installation risk.
!
Credentials
SKILL.md requires an API key (SkillBoss_API_KEY), which is appropriate for the described integration. However, registry metadata provided with the skill lists no required env vars or primary credential — a clear mismatch. The skill will need that secret at runtime but the registry entry does not declare it, which is an incoherence worth clarifying.
Persistence & Privilege
always is false and the skill is user-invocable. There is no install step that writes persistent files or modifies other skills. Autonomous invocation is allowed by default but is not combined here with broad privileges or credential requests.
What to consider before installing
This skill appears to actually call the SkillBoss API to generate images and needs a SkillBoss_API_KEY — that matches the SKILL.md but the registry metadata omitted the required env var. Before installing: (1) confirm the publisher identity and request a homepage or documentation URL (the registry shows 'source: unknown'), (2) verify that SkillBoss (api.SkillBoss.co) is a trusted provider and understand their privacy/billing terms, (3) only provide an API key you control for this purpose (avoid reusing highly privileged keys), and (4) ask the maintainer to update the registry metadata to declare SkillBoss_API_KEY so the requirement is visible up front. Because of the metadata mismatch and unknown source, treat this as suspicious until those clarifications are resolved.

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

latestvk97c8w1kw1a0rst6k2p70pb42h84wqvq
59downloads
0stars
1versions
Updated 1w ago
v2.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.SkillBoss.co/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...