flyworks-avatar-video

Review·Scanned 2/18/2026

This skill generates avatar videos via scripts/hifly_client.py and the https://hfw-api.hifly.cc/api/v2/hifly API. It requires HIFLY_API_TOKEN, reads/writes Path(__file__).parent / "memory.json", and instructs running python scripts/hifly_client.py which uploads local files to the remote API.

from clawhub.ai·v11d86e0·27.3 KB·0 installs
Scanned from 1.0.0 at 11d86e0 · Transparency log ↗
$ vett add clawhub.ai/linhui99/flyworks-avatar-videoReview findings below

Flyworks Avatar Video Skill

An Agent Skill for generating videos using Flyworks (a.k.a HiFly) Digital Humans.

Features

  • 🎬 Public Avatar Video: Create videos using pre-made realistic avatars with TTS
  • 🖼️ Talking Photo: Turn any image into a talking video
  • 🎙️ Voice Cloning: Clone voices from audio samples

Installation

Option 1: Using add-skill CLI (Recommended)

# Install globally
npx skills add Flyworks-AI/skills -a claude-code -g

# Or install to current project only
npx skills add Flyworks-AI/skills -a claude-code

Works with Claude Code, Cursor, Codex, and other agents.

Option 2: Manual Installation

# Clone and symlink to your skills directory
git clone https://github.com/Flyworks-AI/skills.git
ln -s $(pwd)/skills/flyworks-avatar-video ~/.claude/skills/flyworks-avatar-video

Option 3: Direct Copy

git clone https://github.com/Flyworks-AI/skills.git
cp -r skills/flyworks-avatar-video ~/.claude/skills/

Quick Start

1. Install Dependencies

pip install -r requirements.txt

2. Try it out (with demo token)

The skill includes a demo token for testing (30s limit, watermarked videos):

# List available avatars
python scripts/hifly_client.py list_public_avatars

# Clone a voice using bundled sample
python scripts/hifly_client.py clone_voice --audio assets/voice.MP3 --title "My Voice"

# Create a talking photo
python scripts/hifly_client.py create_talking_photo --image assets/avatar.png --title "My Avatar"

3. Use your own API token (optional)

For longer videos without watermarks, get your token from hifly.cc/setting:

export HIFLY_API_TOKEN="your_token_here"

Example Prompts

When using with an AI agent, try prompts like:

"Create a talking photo video from my photo"
"Clone my voice from this audio file and generate a greeting video"
"List available public avatars from Flyworks"
"Generate a welcome video with a professional avatar"
"Help me create a video announcement using my custom avatar"

Documentation

  • SKILL.md - Complete skill documentation
  • references/ - Detailed API references
    • authentication.md - Token setup
    • avatars.md - Working with avatars
    • voices.md - Voice cloning
    • video-generation.md - Video workflow

API Reference

ItemValue
Base URLhttps://hfw-api.hifly.cc/api/v2/hifly
AuthBearer token via Authorization header
Token Sourcehifly.cc/setting

License

MIT - See LICENSE for details.