# Retocar

> Retouch and enhance product images. Use for removing wrinkles, improving lighting, or general image enhancement of product photos.

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

---


# Retocar (Retouch) Workflow

Enhance and retouch product images to improve quality, remove wrinkles, fix lighting, or make other improvements.

## 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": "retocar",
    "inputs": {
      "prompt": "<retouching_instructions>"
    },
    "images": {
      "productImage": "<image_url_or_data_url>"
    }
  }'
```

Example prompts:
- "Remove wrinkles from the clothing"
- "Improve lighting and make colors more vibrant"
- "Clean up the background and enhance the product"
- "Fix shadows and make the image more professional"

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

