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.md

The 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:

  1. Check that VIDRUSH_API_KEY is available.
  2. Explain that video generation consumes credits and obtain the user's confirmation before creating a task.
  3. Fetch GET https://vidrush-ai.com/api/v1/models to choose a current model and valid controls.
  4. Create a task with POST /api/v1/videos.
  5. Poll GET /api/v1/tasks/{taskId} until success, failed, or canceled.
  6. Return the first data.taskUrls entry 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.md
  • vidrush-image — text-to-image and image-to-image via POST /api/v1/images.
  • vidrush-music — original music tracks via POST /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.