Virtual try-on using Kling 1.5 Kolors. Trigger: Use when the user wants to try on clothing virtually, or requests 'virtual try on', 'try on clothes', 'kling kolors', or 'see how clothing looks on me'.
Scanned 6/2/2026
Install via CLI
openskills install awesome-genmedia/skills---
name: "Kling 1.5 Kolors Virtual Try On"
description: "Virtual try-on using Kling 1.5 Kolors. Trigger: Use when the user wants to try on clothing virtually, or requests 'virtual try on', 'try on clothes', 'kling kolors', or 'see how clothing looks on me'."
allowed-tools: ["Bash"]
---
# Kling 1.5 | Kolors Virtual Try On
Virtually try on garments by combining a human image with a garment image. See how clothing looks on a person without physical fitting.
## Quick Start
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v1-5-kolors-virtual-try-on",
"version": "0.0.1",
"input": {
"human_image_url": "https://example.com/person.jpg",
"garment_image_url": "https://example.com/dress.jpg"
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `garment_image_url` | string | (empty) | URL to the garment image |
| `human_image_url` | string | (empty) | URL for the human image |
## Output
- **Type:** image
## Examples
### Try On a Jacket
```json
{
"model": "kling-v1-5-kolors-virtual-try-on",
"version": "0.0.1",
"input": {
"human_image_url": "https://example.com/model-photo.jpg",
"garment_image_url": "https://example.com/leather-jacket.jpg"
}
}
```
### Try On a Formal Dress
```json
{
"model": "kling-v1-5-kolors-virtual-try-on",
"version": "0.0.1",
"input": {
"human_image_url": "https://example.com/full-body-photo.jpg",
"garment_image_url": "https://example.com/evening-gown.jpg"
}
}
```
## Related Models
- [AI Face Aesthetics](../ai-face-aesthetics/SKILL.md) - Face shape adjustments
- [Bria Product Shot](../bria-product-shot/SKILL.md) - Product photography generation
- [Remove Background Enhance](../rembg-enhance/SKILL.md) - Background removal for clean garment images
## Documentation
- [EachLabs API Docs](https://docs.eachlabs.ai)
No comments yet. Be the first to comment!
Create Mermaid diagrams for flowcharts, sequences, ERDs, and
Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.
Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".
Review a pull request or contribution deeply, explain it tutorial-style for a maintainer, and produce a polished report artifact such as HTML or Markdown. Use when asked to analyze a PR, explain a contributor's design decisions, compare it with similar systems, or prepare a merge recommendation.
Generate the stable Paperclip release changelog at releases/vYYYY.MDD.P.md by reading commits, changesets, and merged PR context since the last stable tag.