ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

face-morphing

Morph, blend, and transform faces using each::sense AI. Create face morphs, celebrity blends, family resemblance predictions, gender swaps, and animated transitions between faces.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/eftalyurtseven/face-morphing
Or

Face Morphing

Transform and blend faces using each::sense. This skill enables face morphing, blending two or more faces together, predicting family resemblances, creating gender swaps, and generating smooth morph animations.

Features

  • Face Blending: Seamlessly merge two faces into one
  • Celebrity Morphs: Blend your face with celebrities
  • Family Prediction: Generate what a child might look like from parent photos
  • Couple Face Merge: Create a blended face from two partners
  • Family Resemblance: Analyze and visualize genetic similarities
  • Morph Animation: Create smooth video transitions between faces
  • Gender Swap: Transform facial features between genders
  • Ethnicity Blend: Create faces that blend multiple ethnicities
  • Historical Modernization: Update historical figure faces to modern style
  • Average Face: Generate an average face from multiple inputs

Quick Start

curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Morph these two faces together into a seamless blend, 50% each",
    "image_urls": [
      "https://example.com/face1.jpg",
      "https://example.com/face2.jpg"
    ],
    "mode": "max"
  }'

Use Case Examples

1. Morph Two Faces Together

Basic face morphing that blends two faces into one unified result.

curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Morph these two faces together. Create a seamless blend that takes facial structure from the first image and some features like eyes and nose from the second image. Make it look natural and realistic.",
    "image_urls": [
      "https://example.com/person-a.jpg",
      "https://example.com/person-b.jpg"
    ],
    "mode": "max"
  }'

2. Celebrity Face Blend

Blend a user photo with a celebrity face for fun transformations.

curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Blend my face with this celebrity photo. Create a 50/50 morph that combines my facial structure with their features. Keep the result looking like a real person, not artificial.",
    "image_urls": [
      "https://example.com/my-photo.jpg",
      "https://example.com/celebrity.jpg"
    ],
    "mode": "max"
  }'

3. Parent + Child Prediction

Generate what a child might look like based on two parent photos.

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-eftalyurtseven-face-morphing": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.