Find clothing items that match your color palette from top fashion retailers. Specify colors by
+ name or hex codes
+ , and this Actor will search Zara, H&M, ASOS, and Shein for matching products using advanced color
+ similarity algorithms
Smart validation warns about invalid colors but uses valid ones
Example:
{
"colors":["red","coral","sky blue"]
}
💰 Simplified Price Range
BEFORE: Had to use object format {"priceRange": {"min": 20, "max": 100}}NOW: Simple separate fields minPrice and maxPrice
{
"minPrice":20,
"maxPrice":100
}
🛍️ 6 New Retailers Added
BEFORE: Only 4 websites (Zara, H&M, ASOS, Shein)
NOW: 10 total retailers!
New additions:
Forever 21
Urban Outfitters
Mango
Pull & Bear
Bershka
Stradivarius
🐛 Critical Bug Fixes
Fixed Sharp Library Error
Error: Could not load the "sharp" module using the linuxmusl-x64 runtimeFix: Added platform-specific rebuild in Dockerfile
RUN npm rebuild sharp --platform=linuxmusl --arch=x64
Fixed Request Handler userData Bug
Error: TypeError: Cannot read properties of undefined (reading 'website')Root Cause: Incorrect destructuring of request.userData in request handler
Fix: Changed from nested destructuring to flat destructuring at src/main.js:122
// BEFORE (broken):
const{ label, userData }= request.userData;
const website = userData.website;
// AFTER (fixed):
const{ label, website }= request.userData;
✨ Improved User Experience
Better Error Messages: Clear, helpful messages with emojis
❌ "No colors provided! Please provide..."
⚠️ "Invalid colors (will be skipped): ..."
✅ "Valid hex colors: ..."
Backward Compatibility: Old input format still works