# Remove Model

> Remove the model from product images, leaving only the clothing on a clean background. Use for creating flat lay or ghost mannequin product shots.

- Skill: `livus-ai/remove-model` (Agent Skill)
- Install (CLI): `npx skillmds@latest add livus-ai/remove-model`
- Raw SKILL.md: https://api.skillmd.com/api/skills/livus-ai/remove-model/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: Livus-AI (https://skillmd.com/u/livus-ai)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/livus-ai/remove-model

---


# Remove Model Workflow

Remove the model from product images, leaving only the clothing item on a white or transparent background.

## Input handling

Follow the input handling pattern from `change-color` skill.

## Execute workflow

```bash
curl -X POST ${VISUALS_API_URL:-https://visuals-ai.vercel.app}/api/workflow/execute \
  -H "Authorization: Bearer ${VISUALS_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "workflowId": "remove-model",
    "inputs": {
      "prompt": "Remove the model, keep only the clothing",
      "backgroundType": "<white|transparent>"
    },
    "images": {
      "productImage": "<image_url_or_data_url>"
    }
  }'
```

**backgroundType** options:
- `white` - Place clothing on pure white background (default, better for e-commerce)
- `transparent` - Transparent background (PNG with alpha channel)

Poll for completion as described in `change-color` skill.

