Tools

What You'll Build

An agent that turns a pile of random photos into an organized, searchable wardrobe, then styles outfits from it.

You send it selfies from your camera roll. For each photo, it launches a small army of helper agents, one per clothing item. Each helper isolates that single item out of the picture, pulls its dominant colors, figures out what it is, a navy overcoat, a white sneaker, a striped tee, and files it into a catalog. Once your closet is cataloged, it can start assembling outfits.

The original build comes from a well-known developer in the OpenClaw community who did exactly this with photos of his own clothes, then set his sights on having it suggest full outfits. It is a fun personal project. It is also, with almost no changes, a real business tool.

The Personal Version First

Here is what happens when you point it at yourself.

You dump a few dozen photos of yourself wearing various things into the agent. You do not stage anything. These are just normal pictures.

The agent processes them in parallel. Say one photo shows you in a jacket, a shirt, and jeans. It spins up three helpers. One extracts the jacket, one the shirt, one the jeans. Each helper cleans the item up, reads its color, classifies it, and saves it. Do that across your whole camera roll and you end up with a complete, tagged inventory of what you actually own, not what you think you own.

Then the fun part: you ask it to build outfits. "Something for a dinner, warm weather." "What goes with the green shirt." It works from your real closet, so the suggestions are things you can actually wear tonight.

Why This Is Secretly a Business Tool

Now change one word. Instead of "my clothes," say "my inventory."

The exact same pipeline, snap a photo, isolate each item, tag it by type and color, file it into a searchable catalog, is the single most tedious job in a whole set of businesses:

Clothing resellers and thrift flippers. If you sell on Poshmark, Depop, eBay, or Vinted, you know the grind. Every item has to be photographed, described, tagged, and priced by hand. This agent looks at your photo, tells you it is a size-medium wool blazer in charcoal, and hands you a clean cut-out image and a starter description. What took two minutes an item takes seconds.

Small boutiques and consignment shops. New stock comes in as a box of stuff and a phone full of photos. Turning that into an organized, searchable inventory is a person's afternoon. Here it is a batch job.

Stylists and personal shoppers. The value is the outfit engine. Catalog a client's closet once, and you can propose looks from what they already own, or spot the exact gap a new piece would fill.

The personal build is the proof. The business build is the same code with your product photos instead of your selfies.

How It Works

Step 1: Gather photos. For a wardrobe, your camera roll. For a shop, however you already photograph stock. Messy is fine.

Step 2: Let the agent fan out. Tell it to catalog the photos. It reads each one, finds every distinct item, and hands each item to a helper. Running these in parallel is why a hundred photos does not take a hundred times as long.

Step 3: Each item gets processed. The helper isolates the single item, cleans up the image, extracts the dominant colors, and classifies it, category, color, and any obvious attributes. All of that gets written to the catalog.

Step 4: Search and style. Now you can query it. "All the blue tops." "Everything I have not tagged yet." Or, for the wardrobe version, "put together three outfits for a warm evening."

Step 5 (business version): generate listings. Add a step where, for each item, the agent also drafts a title, a description, and a suggested price. Now your catalog is a stack of ready-to-post listings.

Gotchas and Tips


Keep Reading