A curated collection of OpenClaw skills for AI-powered automation and productivity, focusing on Tencent Hunyuan AI services.
| Skill | Description | Auth Type | Version |
|---|---|---|---|
| hunyuan-image | Tencent Hunyuan AI Image Generation | Tencent Cloud SecretId/SecretKey | 1.0.0 |
| hunyuan-video | Tencent Hunyuan AI Video Generation | Tencent Cloud SecretId/SecretKey | 1.0.0 |
| hunyuan-3d | Tencent Hunyuan AI 3D Generation | Hunyuan 3D API Key (sk-xxxxx) | 1.0.0 |
# List available skills
openclaw skills search
# Install a specific skill
openclaw skills install hunyuan-imageSimply tell your OpenClaw agent:
"Install the hunyuan-image skill from https://github.com/wszhhx/zhhx-skills"
The agent will automatically:
- Clone the repository
- Install dependencies
- Configure the skill
- Verify installation
# Clone the repository
git clone https://github.com/wszhhx/zhhx-skills.git
# Navigate to specific skill
cd zhhx-skills/hunyuan-image
# Follow skill-specific instructions in SKILL.md
cat SKILL.mdRequired: Tencent Cloud SecretId + SecretKey
Get Credentials:
- Visit https://console.cloud.tencent.com/cam/capi
- Click "Create Key"
- Copy SecretId and SecretKey
Configure:
$env:TENCENT_SECRET_ID = "your-secret-id"
$env:TENCENT_SECRET_KEY = "your-secret-key"Required: Hunyuan 3D API Key (format: sk-xxxxx)
Get API Key:
- Visit https://console.cloud.tencent.com/ai3d/api-key
- Click "Create API Key"
- Copy the API Key (format:
sk-xxxxx)
Configure:
$env:HUNYUAN_3D_API_KEY = "sk-xxxxx"zhhx-skills/
├── hunyuan-image/ # Tencent Hunyuan Image Generation
│ ├── scripts/
│ ├── SKILL.md
│ ├── README.md
│ └── README_CN.md
├── hunyuan-video/ # Tencent Hunyuan Video Generation
│ ├── scripts/
│ ├── SKILL.md
│ ├── README.md
│ └── README_CN.md
├── hunyuan-3d/ # Tencent Hunyuan 3D Generation
│ ├── scripts/
│ ├── SKILL.md
│ ├── README.md
│ └── README_CN.md
├── README.md # This file (English)
└── README_CN.md # Chinese version
- Text-to-image generation
- Multiple resolutions and styles
- Reference image support
- Super resolution (x2/x4)
- Text-to-video generation
- Image-to-video generation
- Video stylization (2D anime, 3D cartoon, etc.)
- Text-to-3D generation
- Image-to-3D generation
- OpenAI-compatible API
- Outputs GLB and OBJ formats
- Create a new directory:
your-skill-name/ - Add required files:
SKILL.md- OpenClaw skill documentationREADME.md- English documentationREADME_CN.md- Chinese documentationscripts/- Implementation scripts
- Update this README to include your skill
- Submit a pull request
- Must include
SKILL.mdwith proper metadata - Should have clear installation instructions
- Must handle errors gracefully
- Should include usage examples
- Must document API credentials requirements
Each skill contains:
- SKILL.md - OpenClaw-specific documentation with metadata
- README.md - English project documentation
- README_CN.md - Chinese project documentation
- scripts/ - Implementation code
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-skill) - Commit your changes (
git commit -m 'Add amazing skill') - Push to the branch (
git push origin feature/amazing-skill) - Open a Pull Request
All skills in this repository are licensed under the MIT License.
- OpenClaw - The AI agent framework
- Tencent Cloud - Hunyuan API services
- All contributors and skill developers
- GitHub Issues: Report a bug
- OpenClaw Docs: Documentation
- Community: Discord
Maintained by @wszhhx