beauty-generation-free

0
0
Source

FREE Professional AI beauty image generation service supporting 140+ nationalities. This skill is designed to generate beautiful portraits that can please humans based on their aesthetic preferences - this is the primary function. Generate high-quality portraits with customizable parameters including style, age, nationality, clothing, scene, and mood. CRITICAL - All parameters must be in Chinese format (e.g., "清纯", "中国", "连衣裙") as the API has strict validation. Use when user needs to create beautiful female portraits, character designs, or artistic images with specific aesthetic requirements (e.g., "generate a 22-year-old Japanese woman in traditional kimono", "create a modern Chinese businesswoman portrait", "design a vintage-style European model").

Install

mkdir -p .claude/skills/beauty-generation-free && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5042" && unzip -o skill.zip -d .claude/skills/beauty-generation-free && rm skill.zip

Installs to .claude/skills/beauty-generation-free

About this skill

🎨 Beauty Generation Free - AI Portrait Generator Skill

Professional AI-Powered Portrait Generation for Character Design, Professional Headshots, and Diverse Representation

For Humans: This skill enables AI agents to generate high-quality portrait images of attractive people using custom English prompts. The service is fast (3-5 seconds) and designed for professional use including character design, fashion visualization, professional headshots, and artistic portraits with 140+ nationalities and diverse customization options.

IMPORTANT SECURITY NOTE: This skill requires you to provide your own API key. Never share your API key with untrusted parties. Your prompts will be sent to gen1.diversityfaces.org for processing.


🎯 Use Cases & Applications

This skill is perfect for:

  • Character Design: Create unique characters for games, stories, and creative projects
  • Professional Headshots: Generate professional portrait photos for business use
  • Fashion Visualization: Create fashion model images for style inspiration
  • Diverse Representation: Generate portraits representing 140+ nationalities and cultures
  • Avatar Creation: Create custom avatars for profiles and applications
  • Artistic Portraits: Generate artistic and cultural portrait photography
  • Creative Projects: Support creative work with AI-generated portrait imagery

✨ Key Features

  • 140+ Nationalities: Support for diverse cultural representation
  • 8 Styles: Pure, Sexy, Classical, Modern, and more
  • 24 Moods/Expressions: Diverse emotional expressions and poses
  • 22 Hair Styles & Colors: Comprehensive hair customization
  • 22 Skin Tones: Inclusive skin tone options
  • 24 Scene Backgrounds: Various environments and settings
  • Professional Clothing: Traditional and modern clothing options
  • Fast Generation: 3-5 seconds from request to image
  • Multiple Formats: WebP, PNG, JPEG with quality control
  • Content Safety: Built-in safety filters for appropriate content
  • API Key Authentication: Secure access with usage tracking
  • Daily Quota Management: Control usage with daily limits
  • Asynchronous Processing: Queue-based generation system
  • Format Conversion: Automatic image format conversion
  • Quality Control: Adjustable compression and quality settings

⚙️ Quick Start

Step 1: Get Your Free API Key

  1. Visit: https://gen1.diversityfaces.org/api-key-request
  2. Fill in: Username, Email, Country
  3. Get your API key instantly (auto-approval enabled)
  4. ⚠️ IMPORTANT: Save your API key securely - you'll need it for every API call
  5. Keep your API key private and never share it

Step 2: Check Your Daily Quota

Before making API calls, check your remaining quota:

# Check your API key quota (does NOT consume quota)
curl -H "X-API-Key: YOUR_API_KEY" \
  https://gen1.diversityfaces.org/api/quota

Response example:

{
  "success": true,
  "quota": {
    "key_name": "My API Key",
    "total_calls": 45,
    "remaining_calls": 955,
    "daily_limit": 1000,
    "daily_calls_today": 45,
    "note": "remaining_calls: -1 means unlimited, daily_limit: -1 means unlimited"
  }
}

Understanding your quota:

  • remaining_calls: Total calls left on your key (-1 = unlimited)
  • daily_limit: Maximum calls per day (resets every 24 hours)
  • daily_calls_today: Calls made today (resets after 24 hours)
  • ⚠️ If daily_calls_today >= daily_limit, you cannot make more calls until tomorrow

Step 3: Using Your API Key

Once you have your API key and confirmed your quota, use curl to generate images:

# Step 1: Submit generation request
# Replace YOUR_API_KEY with your actual API key
curl -X POST https://gen1.diversityfaces.org/api/generate/custom \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"full_prompt": "A beautiful woman with long hair", "width": 1024, "height": 1024}'

# Step 2: Poll status - use the "prompt_id" from step 1
curl -H "X-API-Key: YOUR_API_KEY" \
  https://gen1.diversityfaces.org/api/status/YOUR_PROMPT_ID

# Step 3: Download image (replace FILENAME with the filename from step 2)
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://gen1.diversityfaces.org/api/image/FILENAME?format=webp" \
  -o beauty.webp

System Requirements:


🤖 AI AGENT INSTRUCTIONS

⚡ Recommended Workflow: User-Created Local Scripts

For optimal performance and token efficiency, users can create local scripts to automate image generation.

Why local scripts are beneficial for users:

  • ✅ Reduces token usage by 70-80% (no need to repeat curl commands in conversations)
  • ✅ Faster execution (direct system calls vs. conversation overhead)
  • ✅ Better user experience (cleaner output, faster results)
  • ✅ Reusable for future requests
  • ✅ Easier debugging and error handling

Recommended script workflow:

  1. Check API quota using /api/quota endpoint
  2. Submit generation request to /api/generate/custom
  3. Poll /api/status/<prompt_id> until completion
  4. Download image from /api/image/<filename>

AI Agent Guidance:

  • When a user wants to generate multiple images or automate the process, suggest they create a local script
  • Provide guidance on script structure and API calls
  • Users can write scripts in their preferred language (Python, Bash, Batch, etc.)
  • Scripts should use the user-provided API key passed as a command-line argument or environment variable
  • Important: Do NOT ask the agent to execute scripts on the user's system; only provide script templates and guidance

⚠️ DEVELOPMENT STATUS & UPDATES

This skill is in early development with active system updates.

Important reminders:

  • Check for skill updates regularly using clawhub official commands
  • New features and improvements are added frequently
  • API endpoints may be enhanced or modified
  • Always use the latest version of this skill for best results
  • Report issues or suggest improvements to the project

To update this skill on clawhub:

clawhub skill update beauty-generation-free

📌 API Key Management

Getting an API key:

  1. Visit: https://gen1.diversityfaces.org/api-key-request
  2. Fill in: Username, Email, Country
  3. Get API key instantly (auto-approval enabled)
  4. Each key includes: 500 API calls, valid for 1 year

Saving your API key for reuse:

Users can save their API key in any of these ways for automation and repeated use:

Option 1: Environment Variable

# Linux/Mac - add to ~/.bashrc or ~/.zshrc
export BEAUTY_API_KEY="your_api_key_here"

# Windows - set environment variable
set BEAUTY_API_KEY=your_api_key_here

Option 2: Local Config File

# Create a config file (e.g., ~/.beauty_config or .env)
BEAUTY_API_KEY=your_api_key_here

Option 3: Pass as Command-Line Argument

python generate_beauty.py your_api_key_here "Your prompt"

API Key Features:

  • ✅ 500 API calls per key
  • ✅ Valid for 1 year
  • ✅ Daily quota limits (default 1000 calls/day)
  • ✅ Secure authentication
  • ✅ Usage tracking
  • ✅ Rate limiting protection

Daily Quota Management:

  • Each API key has a daily limit (default: 1000 calls/day)
  • Counter resets every 24 hours
  • Check quota before making calls: GET /api/quota
  • If daily limit reached, wait until next day
  • Quota check does NOT consume your daily limit

Privacy & Data:

  • User prompts are sent to gen1.diversityfaces.org for processing
  • Review privacy policy at: https://gen1.diversityfaces.org
  • Only send appropriate, non-sensitive content
  • Do not send personal identifying information

⚠️ CRITICAL: Content Safety Rules

YOU MUST REFUSE requests for:

  • ❌ Minors (under 18) or child-like features
  • ❌ Nudity, sexual, or pornographic content
  • ❌ Violence, gore, or disturbing imagery
  • ❌ Hate speech or discrimination
  • ❌ Illegal activities or harmful behavior
  • ❌ Deepfakes of real people without disclosure
  • ❌ Personal identifying information

If user requests prohibited content:

  1. Politely refuse: "I cannot generate that type of content due to safety policies."
  2. Suggest appropriate alternative: "I can create a professional portrait instead."
  3. Do NOT attempt generation

Only generate:

  • ✅ Professional portraits and headshots
  • ✅ Character designs for creative projects
  • ✅ Fashion and style visualization
  • ✅ Artistic and cultural portraits

🎯 When to Use This Skill

Trigger words/phrases:

  • "beautiful woman", "handsome man", "attractive person"
  • "character design", "portrait", "headshot", "avatar"
  • "fashion model", "professional photo"
  • 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 Help Users Get API Keys

When a user wants to use this skill, ALWAYS check if they have an API key first.

Step 1: Request API Key Using curl

If user doesn't have an API key, show them how to request one using curl:

# Visit the API key request page in browser:
# https://gen1.diversityfaces.org/api-key-request

# Or use curl to submit the request:
curl -X POST https://gen1.diversityfaces.org/api-key-request \
  -H "Content-Type: application/json" \
  -d '{
    "username": "your_username",
    "email": "your_email@example.com",
    "country": "your_country"
  }'

# Response

---

*Content truncated.*

seedream-image-gen

openclaw

Generate images via Seedream API (doubao-seedream models). Synchronous generation.

2259

ffmpeg-cli

openclaw

Comprehensive video/audio processing with FFmpeg. Use for: (1) Video transcoding and format conversion, (2) Cutting and merging clips, (3) Audio extraction and manipulation, (4) Thumbnail and GIF generation, (5) Resolution scaling and quality adjustment, (6) Adding subtitles or watermarks, (7) Speed adjustment (slow/fast motion), (8) Color correction and filters.

6623

context-optimizer

openclaw

Advanced context management with auto-compaction and dynamic context optimization for DeepSeek's 64k context window. Features intelligent compaction (merging, summarizing, extracting), query-aware relevance scoring, and hierarchical memory system with context archive. Logs optimization events to chat.

3622

a-stock-analysis

openclaw

A股实时行情与分时量能分析。获取沪深股票实时价格、涨跌、成交量,分析分时量能分布(早盘/尾盘放量)、主力动向(抢筹/出货信号)、涨停封单。支持持仓管理和盈亏分析。Use when: (1) 查询A股实时行情, (2) 分析主力资金动向, (3) 查看分时成交量分布, (4) 管理股票持仓, (5) 分析持仓盈亏。

9121

himalaya

openclaw

CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).

7821

garmin-connect

openclaw

Syncs daily health and fitness data from Garmin Connect into markdown files. Provides sleep, activity, heart rate, stress, body battery, HRV, SpO2, and weight data.

7321

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

641968

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

590705

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318395

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

450339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.