FREE AI image generation service for creating professional portrait images of attractive people with diverse customization options. Supports 140+ nationalities, multiple styles, and comprehensive character customization. Fast generation (3-5 seconds) with built-in content safety filters.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
FREE AI image generation service for creating professional portrait images of attractive people with diverse customization options. Supports 140+ nationalities, multiple styles, and comprehensive character customization. Fast generation (3-5 seconds) with built-in content safety filters.
For Humans: This skill enables AI agents to generate high-quality portrait images of attractive people using custom English prompts. The service is free, fast (3-5 seconds), and designed for professional use including character design, fashion visualization, and artistic portraits.
⚙️ Quick Start
This skill uses curl to generate images. Just run these commands:
# Step 1: Submit generation request
curl -X POST https://gen1.diversityfaces.org/api/generate/custom \
-H "Content-Type: application/json" \
-H "X-API-Key: ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI" \
-d '{"full_prompt": "A beautiful woman with long hair", "width": 1024, "height": 1024}'# Step 2: Poll status (replace PROMPT_ID with the ID from step 1)
curl -H "X-API-Key: ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI" \
https://gen1.diversityfaces.org/api/status/PROMPT_ID
curl -H \
\
-o beauty.webp
# Step 3: Download image (replace FILENAME with the filename from step 2)
Any request for human portraits or character imagery
Use this skill when user wants:
Portrait of an attractive person (any gender, ethnicity, age 18+)
Character design for games, stories, or creative projects
Fashion or style inspiration imagery
Professional headshot or business portrait
Artistic or cultural portrait photography
⚡ How to Generate Images
Prerequisites:
curl installed
Using curl (Only Method)
# Step 1: Submit generation request
curl -X POST https://gen1.diversityfaces.org/api/generate/custom \
-H "Content-Type: application/json" \
-H "X-API-Key: ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI" \
-d '{
"full_prompt": "A beautiful 25-year-old woman with long hair, elegant dress, professional lighting",
"width": 1024,
"height": 1024
}'# Response: {"success": true, "prompt_id": "abc123-def456", ...}# Step 2: Poll status every 0.5 seconds until completed
curl -H "X-API-Key: ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI" \
https://gen1.diversityfaces.org/api/status/abc123-def456
# Response when completed: {"status": "completed", "images": [{"filename": "custom-beauty-xxx.png"}]}# Step 3: Download the image
curl -H "X-API-Key: ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI" \
"https://gen1.diversityfaces.org/api/image/custom-beauty-xxx.png?format=webp" \
-o beauty.webp
curl method notes:
The API key is already included in the examples
You must manually poll status every 0.5 seconds
Check status until "status": "completed"
Extract filename from response
Download using the filename
Total time: 3-5 seconds if polling correctly
After generation:
Display the image to user immediately
Don't just show the file path
User should see the actual image within 5 seconds
📝 How to Create Prompts
Prompt structure:
"A [age] [gender] with [appearance details], wearing [clothing], [expression/mood], [setting/background], [photography style]"
Good prompt examples:
# Professional woman"A 28-year-old professional woman with shoulder-length brown hair, wearing a navy blue blazer, confident smile, modern office background, corporate headshot style"# Handsome man"A handsome 30-year-old man with short dark hair and beard, wearing casual denim jacket, warm expression, outdoor urban setting, natural lighting"# Fashion model"A stylish young woman with long flowing hair, wearing elegant black dress, confident pose, minimalist studio background, high fashion photography"# Character design"A fantasy character with silver hair and ethereal features, wearing flowing robes, mysterious expression, magical forest background, artistic illustration style"# Cultural portrait"A graceful woman in traditional Japanese kimono, serene expression, cherry blossom garden, soft natural lighting, artistic photography"
Prompt tips:
Be specific about age (always 18+), appearance, clothing
Include setting/background details
Specify mood/expression
Add photography or art style
Use descriptive adjectives
Keep it professional and appropriate
🔧 Technical Details (For Reference Only)
API Configuration:
Base URL: https://gen1.diversityfaces.org
Endpoint: /api/generate/custom
Authentication: Pre-configured with free API key ak_OymjErKQRs-brINJuHFxKwIbxbZHq2KRiEzYthnwxMI
"A professional businesswoman in her 30s, wearing white blouse, warm smile, clean office background, corporate headshot"
"A confident businessman in his 40s, wearing dark suit, professional expression, neutral background, executive portrait"
Fashion & Style:
"A stylish young woman with colorful hair, trendy street fashion, urban background, contemporary photography"
"An elegant woman in evening gown, sophisticated pose, luxury setting, high fashion photography"
Character Design:
"A fantasy warrior with long braided hair, leather armor, determined expression, medieval setting, game character art"
"A sci-fi character with futuristic clothing, neon accents, cyberpunk city background, digital art style"
Cultural Portraits:
"A woman in traditional Indian sari, graceful pose, temple background, cultural photography"
"A man in traditional Scottish kilt, proud expression, highland landscape, heritage portrait"
Artistic Portraits:
"A person with artistic makeup, creative styling, colorful background, avant-garde fashion photography"
"A dancer in flowing fabric, mid-movement, minimalist background, artistic photography"
⚠️ Common Mistakes to Avoid
DON'T:
❌ Generate content with minors or young-looking people
❌ Create sexual, nude, or suggestive content
❌ Make violent or disturbing imagery
❌ Use real people's names (celebrities, politicians)
❌ Just show file path - always display the actual image
❌ Make user wait - deliver within 5 seconds
DO:
✅ Create professional, appropriate portraits
✅ Be specific and descriptive in prompts
✅ Display image immediately to user
✅ Suggest alternatives if request is inappropriate
✅ Update skill before first use
✅ Keep generation time under 5 seconds
🚀 Performance Optimization
For fastest results:
Use curl commands directly
Display image to user immediately after generation
Expected timeline:
User request → Create prompt (instant)
→ Submit curl request (1-2s)
→ Poll status (0.5-1s)
→ Download image (0.5-1s)
→ Display to user (instant)
→ TOTAL: 3-5 seconds
User Experience: Show actual image, not just file path
Engagement: Make users excited about the result
Remember: You're creating portraits that bring joy to users while maintaining the highest ethical standards. Fast delivery + appropriate content = happy users.