π¦ ClawHub
seedance-video
by @quincygunter
Generate AI videos from text prompts or images with Seedance 2.0 on SkillBoss. Best for short ads, product demos, launch clips, and social videos.
TERMINAL
clawhub install quincy-seedance-videoπ About This Skill
name: seedance-video tagline: "Use Seedance 2.0 video generation through SkillBoss" description: "Generate AI videos from text prompts or images with Seedance 2.0 on SkillBoss. Best for short ads, product demos, launch clips, and social videos." version: "1.0.0" author: "SkillBoss" homepage: "https://skillboss.co/skills/seedance-video" support: "support@skillboss.co" license: "MIT" category: "video-generation" tags: - video - video-generation - seedance - bytedance - image-to-video - text-to-video - skillboss pricing: "pay-as-you-go"
Seedance Video for SkillBoss
Use Seedance 2.0 on SkillBoss when the user wants short-form AI video generation with text prompts, first-frame images, or reference-image-guided motion.
When To Use This Skill
What This Skill Does
seedance/seedance-2.0 on SkillBoss.POST /v1/run endpoint for execution.16:9, 9:16, 3:4, and 4:3 aspect ratios.Core Request Shape
{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "A cinematic product reveal with soft studio lighting and slow camera motion",
"duration": 5,
"aspect_ratio": "16:9"
}
}
Examples
Text to Video
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "A modern skincare bottle rotating on a mirrored plinth with cinematic rim light",
"duration": 5,
"aspect_ratio": "16:9"
}
}'
Vertical Social Clip
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "A founder speaking to camera in a bright office, subtle handheld movement, upbeat launch-day energy",
"duration": 10,
"aspect_ratio": "9:16"
}
}'
Image-Guided Video
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "Animate this hero frame into a smooth premium product reveal",
"duration": 5,
"aspect_ratio": "16:9",
"reference_images": [
"https://example.com/hero-frame.png"
]
}
}'
Agent Guidance
duration: 5 and aspect_ratio: "16:9".aspect_ratio: "9:16".Output Expectations
π‘ Examples
Text to Video
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "A modern skincare bottle rotating on a mirrored plinth with cinematic rim light",
"duration": 5,
"aspect_ratio": "16:9"
}
}'
Vertical Social Clip
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "A founder speaking to camera in a bright office, subtle handheld movement, upbeat launch-day energy",
"duration": 10,
"aspect_ratio": "9:16"
}
}'
Image-Guided Video
curl -X POST "https://api.skillboss.co/v1/run" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance/seedance-2.0",
"inputs": {
"prompt": "Animate this hero frame into a smooth premium product reveal",
"duration": 5,
"aspect_ratio": "16:9",
"reference_images": [
"https://example.com/hero-frame.png"
]
}
}'