mulerouter
⚠Review·Scanned 2/18/2026
This skill provides CLI and Python modules to generate and edit images and videos via MuleRouter/MuleRun APIs. It includes explicit uv commands (e.g., uv run python ...), reads local files and .env and uses MULEROUTER_API_KEY to make network requests to https://api.mulerouter.ai / https://api.mulerun.com.
from clawhub.ai·vdee9967·143.9 KB·0 installs
Scanned from 0.1.1 at a38b124 · Transparency log ↗
$ vett add clawhub.ai/misaka43fd/mulerouterReview findings below
MuleRouter Skill
A Claude Code skill for generating images and videos using MuleRouter/MuleRun multimodal APIs.
Features
- Text-to-Image generation
- Text-to-Video generation
- Image-to-Video transformation
- Image-to-Image editing
- Video editing (VACE, keyframe interpolation)
Requirements
- Python 3.10+
uvpackage manager- API key from MuleRouter or MuleRun
Setup
# Option 1: Use custom base URL (takes priority)
export MULEROUTER_BASE_URL="https://api.mulerouter.ai"
export MULEROUTER_API_KEY="your-api-key"
# Option 2: Use site (if BASE_URL not set)
export MULEROUTER_SITE="mulerun" # or "mulerouter"
export MULEROUTER_API_KEY="your-api-key"
Usage
# List available models
uv run python scripts/list_models.py
# Generate video from text
uv run python models/alibaba/wan2.6-t2v/generation.py --prompt "A cat walking"
# Generate image from text
uv run python models/alibaba/wan2.6-t2i/generation.py --prompt "A mountain lake"
See SKILL.md for detailed documentation.