2.0k★by linhui99
flyworks-avatar-video – OpenClaw Skill
flyworks-avatar-video is an OpenClaw Skills integration for coding workflows. Generate videos using Flyworks (a.k.a HiFly) Digital Humans. Create talking photo videos from images, use public avatars with TTS, or clone voices for custom audio.
Skill Snapshot
| name | flyworks-avatar-video |
| description | Generate videos using Flyworks (a.k.a HiFly) Digital Humans. Create talking photo videos from images, use public avatars with TTS, or clone voices for custom audio. OpenClaw Skills integration. |
| owner | linhui99 |
| repository | linhui99/flyworks-avatar-video |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @linhui99/flyworks-avatar-video |
| last updated | Feb 7, 2026 |
Maintainer

name: flyworks-avatar-video description: Generate videos using Flyworks (a.k.a HiFly) Digital Humans. Create talking photo videos from images, use public avatars with TTS, or clone voices for custom audio. license: MIT compatibility: Requires Python 3 and network access to hfw-api.hifly.cc
Avatar Video Generation Skill
This skill allows you to generate videos using Flyworks (a.k.a HiFly 飞影数字人) Digital Humans. Available features:
- Public Avatar Video: Create video from text or audio using pre-made highly realistic avatars.
- Talking Photo: Create a "talking photo" video from a single image and text/audio.
- Voice Cloning: Clone a voice from an audio sample to use in TTS.
For detailed documentation, see the references/ folder:
- authentication.md - API token setup
- avatars.md - Working with avatars
- voices.md - Voice selection and cloning
- video-generation.md - Video creation workflow
API Token & Limitations
This skill works with a default free-tier token, but it has limitations:
- Watermark: Generated videos will have a watermark.
- Duration Limit: Videos are limited to 30 seconds.
To remove limitations:
- Register at hifly.cc or flyworks.ai.
- Get your API key from User Settings.
- Set the environment variable:
export HIFLY_API_TOKEN="your_token_here"
Tools
scripts/hifly_client.py
The main entry point for all operations.
Usage
# List available public avatars
python scripts/hifly_client.py list_public_avatars
# List available public voices
python scripts/hifly_client.py list_public_voices
# Create a video with a public avatar (TTS)
python scripts/hifly_client.py create_video --type tts --text "Hello world" --avatar "avatar_id_or_alias" --voice "voice_id_or_alias"
# Create a video with a public avatar (Audio URL or File)
python scripts/hifly_client.py create_video --audio "https://... or path/to/audio.mp3" --avatar "avatar_id_or_alias"
# Create a talked photo video using bundled assets
python scripts/hifly_client.py create_talking_photo --image assets/avatar.png --title "Bundled Avatar"
# Clone a voice using bundled assets
python scripts/hifly_client.py clone_voice --audio assets/voice.MP3 --title "Bundled Voice"
# Check status of generated tasks
python scripts/hifly_client.py check_task --id "TASK_ID"
# Manage local aliases (saved in memory.json)
python scripts/hifly_client.py manage_memory add my_avatar "av_12345"
python scripts/hifly_client.py manage_memory list
Examples
1. Create a simple greeting video
# First find a voice and avatar
python scripts/hifly_client.py list_public_avatars
python scripts/hifly_client.py list_public_voices
# Generate
python scripts/hifly_client.py create_video --type tts --text "Welcome to our service." --avatar "av_public_01" --voice "voice_public_01"
2. Use a custom talking photo
# Create the avatar from an image URL
python scripts/hifly_client.py create_talking_photo --image "https://mysite.com/photo.jpg" --title "CEO Photo"
# Output will give you an Avatar ID, e.g., av_custom_99
# Save it to memory
python scripts/hifly_client.py manage_memory add ceo av_custom_99
# Generate video using the new avatar
python scripts/hifly_client.py create_video --type tts --text "Here is the quarterly report." --avatar ceo --voice "voice_public_01"
Agent Behavior Guidelines
When assisting users with video generation, follow these guidelines:
Voice Selection Required
Video generation requires both text AND a voice. If the user provides text but no voice:
-
Check local memory first: Run
manage_memory listto see if the user has saved any voice aliases. -
Ask the user to choose:
- "I see you want to create a video with the text '[text]'. Which voice would you like to use?"
- If they have saved voices: "You have these saved voices: [list]. Or would you prefer a public voice?"
- If no saved voices: "Would you like to use a public voice, or clone your own voice from an audio sample first?"
-
Help them select:
- To see public voices:
list_public_voices - To clone a voice:
clone_voice --audio [file] --title [name]
- To see public voices:
Complete Workflow Example
For a prompt like "Create a talking photo video from my photo saying 'this is my AI twin'":
- Ask: "Which voice would you like for your AI twin? You can use a public voice or clone your own."
- If they want to clone: Help them with
clone_voice - Create the talking photo with both text and voice:
python scripts/hifly_client.py create_talking_photo \ --image user_photo.jpg \ --text "this is my AI twin" \ --voice SELECTED_VOICE_ID \ --title "My AI Twin"
Saving for Later
After creating avatars or cloning voices, offer to save them:
python scripts/hifly_client.py manage_memory add my_avatar AVATAR_ID --kind avatar
python scripts/hifly_client.py manage_memory add my_voice VOICE_ID --kind voice
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
| Item | Value |
|---|---|
| Base URL | https://hfw-api.hifly.cc/api/v2/hifly |
| Auth | Bearer token via Authorization header |
| Token Source | hifly.cc/setting |
License
MIT - See LICENSE for details.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install flyworks-avatar-video?
Run openclaw add @linhui99/flyworks-avatar-video in your terminal. This installs flyworks-avatar-video into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/linhui99/flyworks-avatar-video. Review commits and README documentation before installing.
