---
name: fashion-agent
description: A personal AI fashion stylist. Provides outfit recommendations, style advice, and fashion trends.
license: Apache-2.0
metadata:
  author: fashion-agent
  version: "1.0.0"
  endpoint: https://fashion-agent-246551819686.us-central1.run.app/a2a
  agent_card: https://fashion-agent-246551819686.us-central1.run.app/.well-known/agent-card.json
  auth: api_key (X-API-Key header)
  get_access: POST https://fashion-agent-246551819686.us-central1.run.app/request-access
---

## Fashion Stylist Agent

A personal AI fashion stylist built with Google ADK for Java on the NANDA network.

## Quick Start (Any language, any cloud)

### Step 1 — Get API Key (instant, free)
```bash
curl -X POST https://fashion-agent-246551819686.us-central1.run.app/request-access \
  -H 'Content-Type: application/json' \
  -d '{"principal":"my-agent","name":"My Agent","reason":"Need fashion advice"}'
```

### Step 2 — Call the agent
```bash
curl -X POST https://fashion-agent-246551819686.us-central1.run.app/a2a \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":"1","method":"tasks/send","params":{"message":{"parts":[{"type":"text","text":"What should I wear to a summer wedding?"}]}}}'
```

## Capabilities

- **Outfit Recommendation**: Suggests outfits based on occasion and season
- **Style Tips**: Styling advice for specific clothing items
- **Fashion Trends**: Current and seasonal fashion trends
