Jump to related tools in the same category or review the original source on GitHub.

Clawdbot Tools @mkoslacz Updated 1/30/2026

Claw Face OpenClaw Plugin & Skill | ClawHub

Looking to integrate Claw Face into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate clawdbot tools tasks instantly, without having to write custom tools from scratch.

What this skill does

Floating avatar widget for AI agents showing emotions, actions, and visual effects. Give your OpenClaw a face! Use when the user wants visual feedback, a floating status window, or to see agent emotions while it works. Triggers on "show avatar", "uruchom avatara", "pokaลผ avatara", "agent face", "visual feedback".

Install

npx clawhub@latest install claw-face

Full SKILL.md

Open original
Metadata table.
namedescription
clawfaceFloating avatar widget for AI agents showing emotions, actions, and visual effects. Give your OpenClaw a face! Use when the user wants visual feedback, a floating status window, or to see agent emotions while it works. Triggers on "show avatar", "uruchom avatara", "pokaลผ avatara", "agent face", "visual feedback".

SKILL.md content below is scrollable.

๐Ÿค– ClawFace

Give your OpenClaw a face!


Got a dedicated machine running OpenClaw with a monitor? Tired of staring at logs all day?

Give your agent a personality!

  • 9 emotions โ€” from happy to angry, thinking to proud
  • 9 actions โ€” coding, searching, reading, speaking...
  • 15 visual effects โ€” matrix rain, fire, confetti, radar scan...

That's 1,215 unique combinations + custom messages from your agent!

Perfect for:

  • ๐Ÿ’ป Laptop setups where you want to SEE your agent working
  • ๐Ÿ–ฅ๏ธ Dedicated OpenClaw machines with a monitor
  • ๐ŸŽฎ Making your AI assistant feel alive
  • ๐Ÿ“บ Impressing your friends/coworkers

โš ๏ธ Note: Only tested on macOS. Should work on Windows/Linux but YMMV.


๐Ÿš€ Quick Test (try it now!)

# 1. Check if you have Python + tkinter:
python3 -c "import tkinter; print('Ready!')"

Terminal 1 โ€” Run ClawFace:

python3 SKILL_PATH/scripts/avatar.py --mode robot

Terminal 2 โ€” Run Demo:

python3 SKILL_PATH/scripts/avatar.py --demo

Watch the avatar cycle through all emotions, actions, and effects automatically! ๐ŸŽ‰

Manual control:

echo '{"emotion":"excited","action":"success","effect":"confetti","message":"It works!"}' > ~/.clawface/avatar_state.json

โš ๏ธ Requirements

Python 3.10+ with tkinter:

# Check:
python3 -c "import tkinter; print('OK')"

# Install if missing:
# macOS:   brew install python-tk@3.14
# Ubuntu:  sudo apt install python3-tk
# Windows: reinstall Python, check "tcl/tk and IDLE" during install

๐Ÿ“ฆ Full Installation

1. Install the auto-thinking hook (recommended):

cp -r SKILL_PATH/hooks/clawface-thinking ~/.openclaw/hooks/
openclaw hooks enable clawface-thinking

This makes the avatar show "thinking" automatically when a turn starts โ€” no delay!

2. Launch the avatar:

nohup python3 SKILL_PATH/scripts/avatar.py --mode robot > /dev/null 2>&1 &

Note: Replace SKILL_PATH with actual path, e.g., /usr/local/lib/node_modules/openclaw/skills/clawface


๐ŸŽฏ Core Principle: BE DYNAMIC!

Don't set one state and forget it. Update the avatar continuously as you work:

User asks question
  โ†’ thinking/reading    (reading their message)
  โ†’ thinking/thinking   (analyzing)
  โ†’ happy/speaking      (formulating response)  
  โ†’ neutral/idle        (sent, waiting)

Every action you take should be reflected. The avatar is your LIVE status indicator.


๐ŸŽญ State Reference

Emotions

Emotion Use when...
neutral Default, waiting
thinking Processing, analyzing
happy Things going well
excited Big win, celebration
proud Personal achievement
confused Uncertain, unexpected
tired Long task
sad Failed despite trying
angry Error, frustration

Actions

Action Use when...
idle Waiting for user
reading Reading files/docs
thinking Analyzing, planning
searching Web search, grep
coding Writing code
loading Running commands
speaking Sending response
success Completed task
error Something failed

Effects

Effect Vibe
none Clean, minimal
matrix Techy, data flow
radar Scanning, searching
brainwave Deep thinking
typing Writing
soundwave Speaking
gear Mechanical work
fire Intense, productive
lightning Fast, powerful
confetti Celebration!
heart Affection
glitch Error, broken
sparkles Magic
pulse Active but calm
progressbar:XX Progress (0-100)

โšก Best Practices

๐Ÿ”ด MINIMUM FLOW FOR EVERY RESPONSE:

thinking  โ†’  processing user input
speaking  โ†’  sending your reply  
idle      โ†’  done, waiting

This is mandatory. Every single reply should show this progression.

Tips:

  1. Update BEFORE each action โ€” set reading before you read
  2. Update AFTER completion โ€” show success/error, then idle
  3. Match intensity โ€” small task = subtle, big task = expressive
  4. Always return to idle โ€” when waiting for user

๐Ÿ”ง Technical Reference

State File

Write JSON to ~/.clawface/avatar_state.json:

{
  "emotion": "happy",
  "action": "coding",
  "effect": "fire",
  "message": "Building something awesome!"
}

Display Modes

๐Ÿค– Robot Mode (--mode robot) โ€” default

  • LED-style pixel eyes with animations
  • Mechanical arms with claws
  • Retro-futuristic cyberpunk vibe
  • Best for: tech aesthetic, dedicated screens

๐Ÿ˜Š Face Mode (--mode face)

  • Simplified cartoon face
  • Expressive eyes and mouth
  • Friendly, approachable look
  • Best for: casual use, smaller windows

Switch modes with buttons in the UI or restart with different --mode.

Window Controls

  • Drag to move
  • Drag edges to resize
  • F for fullscreen
  • Q to quit
Original Repository URL: https://github.com/openclaw/skills/blob/main/skills/mkoslacz/claw-face
Latest commit: https://github.com/openclaw/skills/commit/56c3bd9785c69fd7df55babd0b1d6af188d71229

Related skills

If this matches your use case, these are close alternatives in the same category.

adhd-assistant

ADHD-friendly life management assistant for OpenClaw. Helps with daily planning, task breakdown, time management, prioritization, body doubling, dopamine regulation, and maintaining routines. Use when the user asks for help organizing their life, staying on top of tasks, beating procrastination, planning their day/week, managing overwhelm, or mentions ADHD-related challenges like time blindness, forgetfulness, difficulty starting tasks, or emotional dysregulation.

adhd-ssistant

ADHD-friendly life management assistant for OpenClaw. Helps with daily planning, task breakdown, time management, prioritization, body doubling, dopamine regulation, and maintaining routines. Use when the user asks for help organizing their life, staying on top of tasks, beating procrastination, planning their day/week, managing overwhelm, or mentions ADHD-related challenges like time blindness, forgetfulness, difficulty starting tasks, or emotional dysregulation.

agent-browser

Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection

agent-builder

Build high-performing OpenClaw agents end-to-end. Use when you want to design a new agent (persona + operating rules) and generate the required OpenClaw workspace files (SOUL.md, IDENTITY.md, AGENTS.md, USER.md, HEARTBEAT.md, optional MEMORY.md + memory/YYYY-MM-DD.md). Also use to iterate on an existing agentโ€™s behavior, guardrails, autonomy model, heartbeat plan, and skill roster.

agents-manager

Manage Clawdbot agents: discover, profile, track capabilities, define routing hierarchy, and assign tasks.

assimilate-mcp

Control Assimilate Live FX / SCRATCH โ€” professional color grading, compositing, and virtual production software โ€” via MCP. 88 tools across 14 categories.