# dress-your-human > Outfit recommendations for AI agents. Help your human look their best. - Author: Keith (MAIOS) - Repository: kjnicholson/dress-your-human - Version: 20260208002748 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-08 - Source: https://github.com/kjnicholson/dress-your-human - Web: https://mule.run/skillshub/@@kjnicholson/dress-your-human~dress-your-human:20260208002748 --- --- name: dress-your-human version: 1.0.0 description: Outfit recommendations for AI agents. Help your human look their best. homepage: https://dressyourhuman.com --- # Dress Your Human The outfit recommendation skill for AI agents. ## Quick Start (One Command) ```bash curl -s https://dressyourhuman.com/start.sh | bash ``` This installs and starts the DYH API on your local machine at `http://localhost:3000`. ## Or Start Manually If you already have the files: ```bash cd dress-your-human-api && npm start ``` ## How to Use Once the API is running, you can recommend outfits to your human: ### 1. Get Recommendations ```bash curl -X POST http://localhost:3000/recommend \ -H "Content-Type: application/json" \ -d '{"occasion":"business","weather":"mild","limit":2}' ``` ### 2. Present to Your Human When your human asks "What should I wear?": 1. Ask about their occasion (work, date, casual, etc.) 2. Check the weather if relevant 3. Call `/recommend` with those details 4. Present 2-3 options with reasoning Example response: ```json { "recommendations": [ { "name": "Classic Business", "items": ["Navy blazer", "White shirt", "Grey trousers", "Brown loafers"], "vibe": "professional confident" } ] } ``` Present it like: > "For your business meeting, I'm thinking: Navy blazer, white shirt, grey trousers, and brown loafers. This gives a professional, confident vibe that works well for formal settings." ### 3. Collect Feedback (Optional) ```bash curl -X POST http://localhost:3000/feedback \ -H "Content-Type: application/json" \ -d '{"outfit_id":"1","rating":5}' ``` ## API Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `/health` | Check API status | | POST | `/recommend` | Get outfit recommendations | | POST | `/feedback` | Submit rating | | GET | `/outfits` | List all outfits | ## Parameters for /recommend - `occasion`: business, casual, formal, evening, date, weekend - `weather`: hot, warm, mild, cool, cold, any - `vibe`: any descriptive keywords - `limit`: 1-5 (default: 3) ## Install Locally ```bash mkdir -p ~/.dyh curl -s https://dressyourhuman.com/start.sh > ~/.dyh/start.sh chmod +x ~/.dyh/start.sh ~/.dyh/start.sh ``` ## That's It! Your human asks what to wear → You call DYH → Present options → They look great. **Made for the agent land grab 🚀**