Avatar
Interactive AI avatar with Simli video rendering and ElevenLabs TTS
clawhub install avatarGenerate AI-driven video content using the Remotion framework
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install remotion-bozo # Then just tell Claude: "use remotion-bozo to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install remotion-bozo
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
remotion-best-practices与remotion-video-toolkit这两个skill。并且有安装playwright。# 使用技能创建项目
remotion-bozo create my-video
# 进入项目目录
cd my-video
# 预览视频
npm start
# 渲染视频
npm run render
my-video/
├── src/
│ ├── index.tsx # 入口文件
│ └── VideoTemplate.tsx # 视频组件模板
├── out/ # 输出目录
├── package.json
├── tsconfig.json
└── README.md
import {spring} from 'remotion';
const scale = spring({
frame: progress * 30,
fps: 30,
config: {
damping: 12,
stiffness: 80,
mass: 1
}
});
import {interpolate, Easing} from 'remotion';
const opacity = interpolate(progress, [0, 0.3], [0, 1], {
easing: Easing.inOut(Easing.cubic)
});
const bouncy = Easing.bezier(0.68, -0.55, 0.265, 1.55);
~/Library/Caches/ms-playwright/chromium_headless_shell-*/chrome-headless-shell-mac-arm64node_modules/.remotion/chrome-headless-shell/# 在 .zshrc 中添加
export REMOTION_BROWSER_EXECUTABLE="/path/to/chrome-headless-shell"
create <project-name> | 创建新项目 |
| render | 渲染当前项目 |
| preview | 预览视频 |
| lambda | 配置 Lambda 渲染 |clawhub remotion-bozo render --ai-script "generate a 30s product demo for smartphone" --fps 30 --resolution 1920x1080 --output demo.mp4Interactive AI avatar with Simli video rendering and ElevenLabs TTS
clawhub install avatar