# Change Scenario

> Change the background/scenario of product images. Use when user wants to place the model and product in a different setting or environment.

- Skill: `livus-ai/change-scenario` (Agent Skill)
- Install (CLI): `npx skillmds@latest add livus-ai/change-scenario`
- Raw SKILL.md: https://api.skillmd.com/api/skills/livus-ai/change-scenario/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/change-scenario

---


# Change Scenario Workflow

Change the background or environment where the model appears, keeping the model and clothing intact.

## Input handling

Follow the input handling pattern from `change-color` skill:
- Shopify URLs → fetch, user selects, upload
- Local files → base64 conversion
- Direct URLs → use as-is

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

Example prompts:
- "Place the model on a beach at sunset"
- "Move to a modern urban street"
- "Studio background with soft lighting"
- "Outdoor garden setting"

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

