# Send Eachlabs Fashion Ai to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "eachlabs-fashion-ai",
    "name": "Eachlabs Fashion Ai",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/eftalyurtseven/eachlabs-fashion-ai",
    "canonicalUrl": "https://clawhub.ai/eftalyurtseven/eachlabs-fashion-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/eachlabs-fashion-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eachlabs-fashion-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/eachlabs-fashion-ai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/eachlabs-fashion-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/eachlabs-fashion-ai",
    "agentUrl": "https://openagent3.xyz/skills/eachlabs-fashion-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eachlabs-fashion-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eachlabs-fashion-ai/agent.md"
  }
}
```
## Documentation

### EachLabs Fashion AI

Generate AI fashion model imagery, virtual try-on experiences, runway content, and campaign visuals using EachLabs models.

### Authentication

Header: X-API-Key: <your-api-key>

Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai.

### Image Generation & Editing

TaskModelSlugFashion model generationGPT Image v1.5gpt-image-v1-5-text-to-imageVirtual try-on (best)Kolors Virtual Try-Onkling-v1-5-kolors-virtual-try-onVirtual try-on (alt)IDM VTONidm-vtonGarment on modelWan v2.6 Image-to-Imagewan-v2-6-image-to-imageModel photoshootProduct Photo to Modelshootproduct-photo-to-modelshootPhotoshoot stylingNano Banana Pro Photoshootnano-banana-pro-photoshootFace/look consistencyOmni Zeroomni-zeroCharacter consistencyIdeogram Characterideogram-characterPhotomakerPhotomakerphotomakerPhotomaker StylePhotomaker Stylephotomaker-styleAvatar generationInstant IDinstant-idSoul stylingHiggsfield AI Soulhiggsfield-ai-soulBecome imageBecome Imagebecome-image

### Training

TaskModelSlugBrand style trainingZ Image Trainerz-image-trainerPortrait LoRAFlux LoRA Portrait Trainerflux-lora-portrait-trainer

### Video

TaskModelSlugRunway videoPixverse v5.6 Image-to-Videopixverse-v5-6-image-to-videoCatwalk animationBytedance Omnihuman v1.5bytedance-omnihuman-v1-5Motion referenceKling v2.6 Pro Motionkling-v2-6-pro-motion-control

### Prediction Flow

Check model GET https://api.eachlabs.ai/v1/model?slug=<slug> — validates the model exists and returns the request_schema with exact input parameters. Always do this before creating a prediction to ensure correct inputs.
POST https://api.eachlabs.ai/v1/prediction with model slug, version "0.0.1", and input matching the schema
Poll GET https://api.eachlabs.ai/v1/prediction/{id} until status is "success" or "failed"
Extract output URL from response

### AI Fashion Model Generation

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "gpt-image-v1-5-text-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "Professional fashion model wearing a tailored navy blazer, editorial photography, studio lighting, full body shot, neutral background",
      "image_size": "1024x1536",
      "quality": "high"
    }
  }'

### Virtual Try-On

Combine a garment image with a model image:

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "wan-v2-6-image-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "The person in image 1 wearing the clothing from image 2, professional fashion photography, editorial style",
      "image_urls": ["https://example.com/model.jpg", "https://example.com/garment.jpg"],
      "image_size": "portrait_4_3"
    }
  }'

### Runway / Catwalk Video

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "pixverse-v5-6-image-to-video",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "prompt": "Fashion model walking confidently on a runway, camera follows from front, professional fashion show lighting",
      "duration": "5",
      "resolution": "1080p"
    }
  }'

### Catwalk with Motion Reference

Use a real runway walk as motion reference:

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "kling-v2-6-pro-motion-control",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "video_url": "https://example.com/runway-walk-reference.mp4",
      "character_orientation": "video"
    }
  }'

### Brand Style Training

Train a LoRA on your brand's visual style for consistent campaign imagery:

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "z-image-trainer",
    "version": "0.0.1",
    "input": {
      "image_data_url": "https://example.com/brand-photos.zip",
      "default_caption": "brand editorial fashion photography style",
      "training_type": "style",
      "steps": 1500
    }
  }'

### Prompt Tips for Fashion

Specify pose: "full body shot", "half body", "close-up on garment details"
Include lighting: "editorial studio lighting", "natural light", "dramatic side lighting"
Mention style: "editorial", "street style", "haute couture", "casual lookbook"
For diversity: specify body types, skin tones, and ages in prompts
For consistency: use the same style keywords across a campaign series

### Parameter Reference

See the eachlabs-image-generation and eachlabs-video-generation references for complete model parameters.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: eftalyurtseven
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/eachlabs-fashion-ai)
- [Send to Agent page](https://openagent3.xyz/skills/eachlabs-fashion-ai/agent)
- [JSON manifest](https://openagent3.xyz/skills/eachlabs-fashion-ai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/eachlabs-fashion-ai/agent.md)
- [Download page](https://openagent3.xyz/downloads/eachlabs-fashion-ai)