Vidrush Agent Skill
Install the Vidrush Video Generation Agent Skill for a documented credit-aware video workflow.
Install
Download the Skill and its concise API reference into a Claude skills directory:
curl -fsSL https://vidrush-ai.com/skills/vidrush-video/SKILL.md \
--create-dirs -o ~/.claude/skills/vidrush-video/SKILL.md
curl -fsSL https://vidrush-ai.com/skills/vidrush-video/reference.md \
--create-dirs -o ~/.claude/skills/vidrush-video/reference.mdThe Skill is named vidrush-video. Its trigger description covers requests to generate video, use Sora, Veo, Kling, or turn an image into video.
Workflow
The installed Skill instructs an agent to:
- Check that
VIDRUSH_API_KEYis available. - Explain that video generation consumes credits and obtain the user's confirmation before creating a task.
- Fetch
GET https://vidrush-ai.com/api/v1/modelsto choose a current model and valid controls. - Create a task with
POST /api/v1/videos. - Poll
GET /api/v1/tasks/{taskId}untilsuccess,failed, orcanceled. - Return the first
data.taskUrlsentry after success.
reference.md contains the endpoint table, accepted public request fields, lifecycle, and HTTP/error guidance used by the Skill.
Image, music, and audio skills
The same pattern is available for the other modalities. Each Skill triggers on its media type and wraps the matching v1 endpoint.
# Image (text-to-image and image-to-image)
curl -fsSL https://vidrush-ai.com/skills/vidrush-image/SKILL.md \
--create-dirs -o ~/.claude/skills/vidrush-image/SKILL.md
curl -fsSL https://vidrush-ai.com/skills/vidrush-image/reference.md \
--create-dirs -o ~/.claude/skills/vidrush-image/reference.md
# Music
curl -fsSL https://vidrush-ai.com/skills/vidrush-music/SKILL.md \
--create-dirs -o ~/.claude/skills/vidrush-music/SKILL.md
curl -fsSL https://vidrush-ai.com/skills/vidrush-music/reference.md \
--create-dirs -o ~/.claude/skills/vidrush-music/reference.md
# Audio (text-to-speech and sound effects)
curl -fsSL https://vidrush-ai.com/skills/vidrush-audio/SKILL.md \
--create-dirs -o ~/.claude/skills/vidrush-audio/SKILL.md
curl -fsSL https://vidrush-ai.com/skills/vidrush-audio/reference.md \
--create-dirs -o ~/.claude/skills/vidrush-audio/reference.mdvidrush-image— text-to-image and image-to-image viaPOST /api/v1/images.vidrush-music— original music tracks viaPOST /api/v1/music.vidrush-audio— text-to-speech (POST /api/v1/speech) and sound effects (POST /api/v1/sound-effects).
Credentials and safety
The Skill sends Authorization: Bearer $VIDRUSH_API_KEY. Keep the key in the agent's secure environment, not in a prompt or client-side source. It should not create a billable task before the user confirms the credit cost.