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
What this skill does
# ๐จ ClawImage Free - AI Portrait Generator (No Auth Required)
**Professional AI-Powered Portrait Generation**
**Powered by [diversityfaces.org](https://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:
```bash
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
```bash
# 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
```bash
# 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:**
```bash
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)**
```bash
# 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 imRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context โ no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes โ information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development โ guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.