Overview
- Skill Key
- anichikage/yollomi
- Author
- anichikage
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/anichikage/yollomi
- Latest Commit SHA
- 3b02d7b2c372806bbebc4ba68ae0495d30dd7092
AI image generator skill (image, image generation). Multi-model image generator for Yollomi to generate AI images via one unified API endpoint. Requires YOLLOMI_API_KEY.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 yollomi-ai-api 技能。 若已安装,则直接安装 yollomi-ai-api 技能。
# Yollomi AI API Skill
Generates images and videos via the Yollomi API. All models use a **single unified endpoint** with different `modelId` parameters.
## Setup
1. **API Key**: Set `YOLLOMI_API_KEY` (environment variable).
Notes:
- Video generation is temporarily disabled in this skill build.
## Unified Endpoint
```
POST /api/v1/generate
```
**Headers**: `Authorization: Bearer ${YOLLOMI_API_KEY}` or `X-API-Key: ${YOLLOMI_API_KEY}`
**Content-Type**: `application/json`
**Body**:
- `type` (required): `"image"` or `"video"`
- `modelId` (required): Model identifier
- Additional params depend on model (prompt, imageUrl, etc.)
**Response (image)**: `{ images: string[], remainingCredits: number }`
**Response (video)**: `{ video: string, remainingCredits: number }`
## List Models
```
GET /api/v1/models
```
Returns all available image and video modelIds.
## Common Examples
**Generate image (Flux)**:
```bash
curl -X POST "${YOLLOMI_BASE_URL:-https://yollomi.com}/api/v1/generate" \
-H "Authorization: Bearer $YOLLOMI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"image","modelId":"flux","prompt":"A cat in a hat","aspectRatio":"1:1"}'
```
**Remove background**:
```bash
curl -X POST "${YOLLOMI_BASE_URL:-https://yollomi.com}/api/v1/generate" \
-H "Authorization: Bearer $YOLLOMI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"image","modelId":"remove-bg","imageUrl":"https://example.com/photo.jpg"}'
```
**Generate video**:
```bash
curl -X POST "${YOLLOMI_BASE_URL:-https://yollomi.com}/api/v1/generate" \
-H "Authorization: Bearer $YOLLOMI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"video","modelId":"kling-2-1","prompt":"A cat walking in the rain"}'
```
## Aspect Ratio (aspectRatio)
Supported aspect ratios for text-to-image models:
| ratio | description |
|------|-------------|
| 1:1 | Square (default) |
| 16:9 | Landscape |
| 9:16 | Portrait |
## Image ModelIds
| modelId | Credits | Required |...
# Yollomi AI Image Generator (All Models)
An AI image generator skill for OpenClaw. Image generation for text-to-image and image-to-image, across many AI image models via one unified Yollomi API.
Keywords: image, ai image, image generator, image generation, text-to-image, image-to-image, multimodel.
> Note: Video generation is temporarily disabled in this build.
## Install (ClawHub)
```bash
clawhub install yollomi
```
## Configuration
Set the following environment variable for OpenClaw:
- `YOLLOMI_API_KEY` (required)
## Usage
Ask the agent to generate an image. The skill uses the unified endpoint:
`POST /api/v1/generate` with `{ type: "image", modelId, ... }`
See [SKILL.md](SKILL.md) and [models-reference.md](models-reference.md) for modelIds and parameters.
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.