change-color

change-color is a skill for Claude Code from Livus-AI/Skills-MCP. It costs 35 tokens per session (1,959 once invoked), scanned A, original, MIT.

An image-editing workflow for changing clothing colors in product photos using Visuals AI. It accepts local image files, direct image URLs, and certain Shopify product URLs.

In plain words
What is it for?
Changing clothing colors and creating color variations for product images, including images from supported Shopify product pages.
Why use it?
It avoids manually recoloring clothing photos or preparing product images one by one. A Visuals AI API key is required.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Good fit Changing clothing colors and creating color variations for product images, including images from supported Shopify product pages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/livus-ai/skills-mcp/change-color
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Livus-AI/Skills-MCP --skill change-color
Clone the repo
git clone --depth 1 https://github.com/Livus-AI/Skills-MCP

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for change-color

README.md
[![agentmods](https://agentmods.dev/badge/skills/livus-ai/skills-mcp/change-color/github.svg)](https://agentmods.dev/skills/livus-ai/skills-mcp/change-color)
Your own site
<a href="https://agentmods.dev/skills/livus-ai/skills-mcp/change-color"><img src="https://agentmods.dev/badge/skills/livus-ai/skills-mcp/change-color/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for change-color

Your own site · 80×15
<a href="https://agentmods.dev/skills/livus-ai/skills-mcp/change-color"><img src="https://agentmods.dev/badge/skills/livus-ai/skills-mcp/change-color.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,959 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.01959
Opus 5 $0.00017 $0.00979
Sonnet 5 $0.00007 $0.00392
Haiku 4.5 $0.00003 $0.00196

Measured 12d ago against content hash ed45403a1f2a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

change-color scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST ${VISUALS_API_URL:-https://visuals-ai.vercel.app}/api/zen-product \
skills/visuals/change-color/SKILL.md · 247 lines

How it starts

The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Change Color Workflow

Change the color of clothing in product images using Visuals AI's color transformation workflow.

Supported inputs

  • Local image files: PNG, JPG, JPEG (will convert to base64)
  • Shopify product URLs: https://www.zenoficial.com.br/products/... (will fetch available images)
  • Direct image URLs: Any publicly accessible image URL

Required environment variable

Ensure VISUALS_API_KEY is set in your environment. This is the master API key for Visuals AI.

Workflow steps

1. Determine input type

Check if the user provided:

  • A local file path (check if file exists)
  • A Shopify product URL (contains zenoficial.com.br/products/)
  • A direct image URL (starts with http:// or https://)

2. Handle Shopify product URLs

If the input is a Shopify product URL, fetch available images first:

curl -X POST ${VISUALS_API_URL:-https://visuals-ai.vercel.app}/api/zen-product \
  -H "Content-Type: application/json" \
  -d '{"productUrl": "<shopify_url>", "action": "fetch"}'

This returns:

{
  "productName": "Product Name",
  "productUrl": "...",
  "images": [
    {"id": "...", "thumbnailUrl": "...", "fullUrl": "..."},
    ...
  ]
}

Present the images to the user using AskUserQuestion with the thumbnail URLs so they can choose which image to use. Show the product name and let them select from the available images.

After the user selects an image, upload it to get a fal.ai URL:

curl -X POST ${VISUALS_API_URL:-https://visuals-ai.vercel.app}/api/zen-product \
  -H "Content-Type: application/json" \
  -d '{"imageUrl": "<selected_fullUrl>", "action": "upload"}'

This returns:

{
  "url": "https://v3b.fal.media/files/...",
  "originalUrl": "..."
}

Use the url field as the image URL for the workflow.

3. Handle local files

If the input is a local file path, resize if needed to avoid 10MB payload limit:

file_path="<path>"

# Check file size and resize if necessary to avoid 10MB limit
# Base64 adds ~33% overhead, so target max 7MB original size
file_size=$(stat -f%z "$file_path" 2>/dev/null || stat -c%s "$file_path" 2>/dev/null)
max_size=$((7 * 1024 * 1024))  # 7MB

if [ "$file_size" -gt "$max_size" ]; then
  echo "Image is too large ($(($file_size / 1024 / 1024))MB), resizing to fit 10MB limit..."

  # Resize to max 1024px width using sips (macOS) or convert (ImageMagick)
  if command -v sips >/dev/null 2>&1; then
    sips --resampleWidth 1024 "$file_path" --out /tmp/resized-image.png >/dev/null 2>&1
    file_path="/tmp/resized-image.png"
  elif command -v convert >/dev/null 2>&1; then
    convert "$file_path" -resize 1024x "$file_path"
  else
    echo "Warning: Image may be too large. Install ImageMagick for auto-resize."
  fi
fi

# Detect mime type from extension
mime_type="image/jpeg"
if [[ "$file_path" == *.png ]]; then
  mime_type="image/png"
elif [[ "$file_path" == *.webp ]]; then
  mime_type="image/webp"
fi

# Convert to base64 data URL
base64_data=$(base64 -i "$file_path" | tr -d '\n')
image_url="data:${mime_type};base64,${base64_data}"

Read the full file on GitHub · 247 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 247 lines · 35 tokens per session scan A ed45403a1f2a

Subscribe to this mod's changes

change-color is a skill published in the GitHub repository Livus-AI/Skills-MCP (2 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 1,959 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

amazon-reviews-api-skill

This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…

browser-act/skills · 124 tokens

amazon-competitor-analyzer

Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.

browser-act/skills · 48 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

food-order

Reorder previous Foodora orders, preview cart contents, and track delivery ETA/status with ordercli. Use when the user wants to reorder food, check delivery status, or browse recent Foodora order history. Never confirm an order without explicit user approval.

Bitterbot-AI/bitterbot-desktop · 53 tokens

product-description-generator

E-commerce product description generator for any platform. Generates optimized titles, bullet points, descriptions, and backend keywords using competitor research + keyword scoring + FABE copywriting. Two modes: (A) Create — generate listing from product specs with optional competitor analysis, (B) Optimize — improve…

nexscope-ai/eCommerce-Skills · 126 tokens

amazon-price-tracker

Amazon price monitoring and competitive pricing intelligence. Real-time price tracking, Buy Box analysis, promotion detection, and dynamic pricing strategy optimization. Use when the user asks about price monitoring, competitor pricing, Buy Box tracking, or pricing strategy.

nexscope-ai/Amazon-Skills · 51 tokens