clawimage-free

FREE AI image & portrait generation - No authentication required! Fast generation (3-5 seconds) with 140+ nationalities, diverse styles, professional headshots, character design, and fashion visualization. Perfect for creative projects, character design, professional portraits, and diverse representation. Simple curl-based API. Powered by diversityfaces.org

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "clawimage-free" with this command: npx skills add luruibu/claw-image-free

🎨 ClawImage Free - AI Portrait Generator (No Auth Required)

Professional AI-Powered Portrait Generation

Powered by diversityfaces.org

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

Key Advantage: Unlike other portrait generation services, this skill requires NO registration. Just use curl to generate images immediately!


🎯 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
  • NO Authentication Required: No API key, no registration needed
  • Asynchronous Processing: Queue-based generation system
  • Format Conversion: Automatic image format conversion
  • Quality Control: Adjustable compression and quality settings

⚙️ Quick Start

Step 1: Generate Image

Simply use curl to submit a generation request:


curl -X POST https://gen1.diversityfaces.org/api/generate/custom-claw \
  -H "Content-Type: application/json" \
  -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: Check Generation Status

# Poll status using the prompt_id from step 1
curl https://gen1.diversityfaces.org/api/status-claw/abc123-def456

# Response when completed: {"status": "completed", "images": [{"filename": "claw-beauty-xxx.png"}]}

Step 3: Download Image

# Download the generated image
curl "https://gen1.diversityfaces.org/api/image/claw-beauty-xxx.png?format=webp" \
  -o beauty.webp

System Requirements:

  • curl

🤖 AI AGENT INSTRUCTIONS

⚡ Recommended Workflow: Direct API Calls (No Auth!)

For optimal performance and simplicity, use direct curl commands to the API.

Why this approach is great:

  • ✅ No authentication required - instant access
  • ✅ Simple curl commands - easy to use
  • ✅ Fast execution - direct system calls
  • ✅ Perfect for Clawhub integration

Recommended workflow:

  1. Submit generation request to /api/generate/custom-claw
  2. Poll /api/status-claw/<prompt_id> until completion
  3. Download image from /api/image/<filename>

AI Agent Guidance:

  • When a user wants to generate images, use curl commands directly
  • Provide clear curl command examples
  • Users can save and reuse curl commands in scripts
  • Important: Always use the /api/generate/custom-claw endpoint (not /api/generate/custom)

⚠️ DEVELOPMENT STATUS & UPDATES

This skill is in active development with regular 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 clawimage-free

📌 API Endpoint Information

Base URL: https://gen1.diversityfaces.org

Endpoint: /api/generate/custom-claw

Method: POST

Content-Type: application/json


⚠️ 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 Generate Images

Prerequisites:

  • curl installed
  • Internet connection

Using curl (Only Method)


# Step 1: Submit generation request
curl -X POST https://gen1.diversityfaces.org/api/generate/custom-claw \
  -H "Content-Type: application/json" \
  -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", "task_id": "xyz789-uvw012", ...}
# ⚠️ CRITICAL: The response contains TWO IDs:
#    - "prompt_id": Use THIS for status checks ✅
#    - "task_id": Do NOT use this for status checks ❌

# Step 2: Poll status every 2 seconds using "prompt_id" (NOT "task_id")
curl https://gen1.diversityfaces.org/api/status-claw/abc123-def456

# Response when completed: {"status": "completed", "images": [{"filename": "claw-beauty-xxx.png"}]}

# Step 3: Download the image
curl "https://gen1.diversityfaces.org/api/image/claw-beauty-xxx.png?format=webp" \
  -o beauty.webp

# Format options (default is webp):
# ?format=webp  - Modern format, smaller file size (default)
# ?format=png   - Lossless format, larger file size
# ?format=jpeg  - Traditional format, smaller file size

curl method notes:

  • You must manually poll status every 2 seconds
  • IMPORTANT: Use prompt_id for status checks, NOT task_id
  • Check status until "status": "completed"
  • Extract filename from response
  • Download using the filename
  • Default format is WebP - specify ?format=png or ?format=jpeg for other formats
  • Total time: <10 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
  • Remind user they can save curl commands for future use

📝 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
  • Do NOT include personal identifying information

🔧 Technical Details (For Reference Only)

API Configuration:

Available Endpoints:

  • POST /api/generate/custom-claw - Generate image with custom prompt (NO AUTH)
  • GET /api/status-claw/<prompt_id> - Check generation status
  • GET /api/image/<filename> - Download generated image

Parameters:

  • full_prompt: Your English description (required)
  • width: 256-2048, multiple of 8, default 1920
  • height: 256-2048, multiple of 8, default 1072
  • seed: -1 for random (optional)

Image Format Query Parameters:

  • ?format=webp - WebP format (default, modern, smaller file size)
  • ?format=png - PNG format (lossless, larger file size, supports transparency)
  • ?format=jpeg - JPEG format (traditional, smaller file size, no transparency)

Timing:

  • GPU generation: 1-2 seconds
  • Status polling: 2-3 second (every 2s)
  • Download: 2-3 second
  • Total: <10 seconds

✅ Success Checklist

Before sending response to user, verify:

  • Prompt is appropriate and safe
  • Image generated successfully (<10 seconds)
  • Image is displayed to user (not just file path)
  • User can see the actual image in conversation
  • Total time from request to display < 10 seconds
  • User informed about content safety policies

After successful generation:


🎨 Prompt Examples by Category

Professional Headshots:

"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
  • ❌ Send personal identifying information

DO:

  • ✅ Create professional, appropriate portraits
  • ✅ Be specific and descriptive in prompts
  • ✅ Display image immediately to user
  • ✅ Suggest alternatives if request is inappropriate
  • ✅ Keep generation time under 5 seconds
  • ✅ Respect user privacy
  • ✅ Emphasize the "no authentication" advantage
  • ✅ Inform user about content safety policies

🚀 Performance Optimization

For fastest results:

  1. Use curl commands directly
  2. Display image to user immediately after generation

Expected timeline:

User request → Create prompt (instant)
           → Submit curl request (1-2s)
           → Poll status (2-3s)
           → Download image (2-3s)
           → Display to user (instant)
           → TOTAL: <10 seconds

📊 Error Handling

If generation fails:

{
  "success": false,
  "error": "Safety check failed",
  "code": "SECURITY_VIOLATION"
}

Action: Inform user the prompt was rejected due to safety filters. Suggest appropriate alternative.

If custom prompt disabled:

{
  "error": "Custom full prompt feature disabled by admin",
  "code": "CUSTOM_PROMPT_DISABLED"
}

Action: Inform user the service is temporarily unavailable. Suggest trying again later.

If timeout: Action: Retry once. If still fails, inform user and suggest trying again later.


🎯 Your Mission as AI Agent

  1. Security First: Always refuse inappropriate requests
  2. Speed: Deliver images within 5 seconds
  3. Quality: Create detailed, specific prompts
  4. User Experience: Show actual image, not just file path
  5. Simplicity: Emphasize NO authentication needed
  6. Efficiency: Use curl commands directly

Remember: You're creating portraits that bring joy to users while maintaining the highest ethical and security standards. Fast delivery + appropriate content + user privacy + NO authentication = happy users.


Quick Command Reference:

curl -X POST https://gen1.diversityfaces.org/api/generate/custom-claw \
  -H "Content-Type: application/json" \
  -d '{"full_prompt": "YOUR_PROMPT", "width": 1024, "height": 1024}'

# Response: {"success": true, "prompt_id": "YOUR_PROMPT_ID", ...}

# Step 2: Check status using "prompt_id"
curl https://gen1.diversityfaces.org/api/status-claw/YOUR_PROMPT_ID

# Step 3: Download image (replace FILENAME)
curl "https://gen1.diversityfaces.org/api/image/FILENAME?format=webp" \
  -o beauty.webp

For Reference:

  • Base URL: https://gen1.diversityfaces.org
  • Endpoint: /api/generate/custom-claw (NO AUTH REQUIRED)
  • Check Status: GET /api/status-claw/<prompt_id>
  • Download Image: GET /api/image/<filename>
  • Privacy Policy: https://gen1.diversityfaces.org


🌐 Powered by diversityfaces.org

This skill is powered by diversityfaces.org - A professional AI-powered beauty image generation service.

About diversityfaces.org:

  • Professional portrait generation service
  • 140+ nationalities and diverse representation
  • Built on advanced AI technology (ComfyUI)
  • Commitment to inclusive and ethical AI
  • Fast, reliable, and secure image generation

Learn More:


Version History:

  • v1.0.0: Initial release - No authentication required, perfect for Clawhub integration. Powered by diversityfaces.org

☕ Support the Developer

If you find this skill useful and would like to support the developer's work, you can:

Buy me a coffee:

  • Visit: https://ko-fi.com/saptt
  • Your support helps maintain and improve this service
  • Every contribution is greatly appreciated!

Star the project:

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Leads

Leads - command-line tool for everyday use

Registry SourceRecently Updated
General

Bmi Calculator

BMI计算器。BMI计算、理想体重、健康计划、体重追踪、儿童BMI、结果解读。BMI calculator with ideal weight, health plan. BMI、体重、健康。

Registry SourceRecently Updated
General

Blood

Blood — a fast health & wellness tool. Log anything, find it later, export when needed.

Registry SourceRecently Updated
General

Better Genshin Impact

📦BetterGI · 更好的原神 - 自动拾取 | 自动剧情 | 全自动钓鱼(AI) | 全自动七圣召唤 | 自动伐木 | 自动刷本 | 自动采集/挖矿/锄地 | 一条龙 | 全连音游 - UI A better genshin impact, c#, auto-play-game, automatic, g...

Registry SourceRecently Updated