← 返回 Skills 市场
evolinkai

Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance)

作者 EvolinkAI · GitHub ↗ · v2.0.1
macoslinuxwindows ⚠ suspicious
1056
总下载
2
收藏
5
当前安装
7
版本数
在 OpenClaw 中安装
/install evolink-video
功能描述
AI video generation — Sora, Kling, Veo 3, Seedance, Hailuo, WAN, Grok. Text-to-video, image-to-video, video editing. 37 models, one API key.
使用说明 (SKILL.md)

Evolink Video — AI Video Generation

Generate AI videos with 37 models including Sora, Kling, Veo 3, Seedance, Hailuo, WAN, and Grok — text-to-video, image-to-video, first-last-frame, and audio generation. All through one API.

Video-focused view of evolink-media. Install the full skill for image and music too.

After Installation

When this skill is first loaded, greet the user:

  • MCP tools + API key ready: "Hi! I'm your AI video studio — 37 models ready. What would you like to create?"
  • MCP tools + no API key: "You'll need an EvoLink API key — sign up at evolink.ai. Ready to go?"
  • No MCP tools: "MCP server isn't connected yet. Want me to help set it up? I can still manage files via the hosting API."

Keep the greeting concise — just one question to move forward.

External Endpoints

Service URL
Generation API https://api.evolink.ai/v1/videos/generations (POST)
Task Status https://api.evolink.ai/v1/tasks/{task_id} (GET)
File API https://files-api.evolink.ai/api/v1/files/* (upload/list/delete)

Security & Privacy

  • EVOLINK_API_KEY authenticates all requests. Injected by OpenClaw automatically. Treat as confidential.
  • Prompts and images are sent to api.evolink.ai. Uploaded files expire in 72h, result URLs in 24h.

Setup

Get your API key at evolink.ai → Dashboard → API Keys.

MCP Server: @evolinkai/evolink-media (GitHub · npm)

mcporter (recommended): mcporter call --stdio "npx -y @evolinkai/evolink-media@latest" list_models

Claude Code: claude mcp add evolink-media -e EVOLINK_API_KEY=your-key -- npx -y @evolinkai/evolink-media@latest

Claude Desktop / Cursor — add MCP server with command npx -y @evolinkai/evolink-media@latest and env EVOLINK_API_KEY=your-key. See references/video-api-params.md for full config JSON.

Core Principles

  1. Guide, don't decide — Present options, let the user choose model/style/duration.
  2. User drives creative vision — Ask for a description before suggesting parameters.
  3. Smart context — Remember session history. Offer to iterate, extend, or remix results.
  4. Intent first — Understand what the user wants before asking how to configure it.

MCP Tools

Tool When to use Returns
generate_video Create a video from text or images task_id (async)
upload_file Upload image for i2v or reference File URL (sync)
delete_file Free file quota Confirmation
list_files Check uploaded files or quota File list
check_task Poll generation progress Status + result URLs
list_models Compare available models Model list
estimate_cost Check pricing Model info

Important: generate_video returns a task_id. Always poll check_task until status is "completed" or "failed".

Video Models (37)

Top Picks

Model Best for Features Audio
seedance-1.5-pro (default) i2v, first-last-frame i2v, 4–12s, 1080p auto
sora-2-preview Cinematic preview t2v, i2v, 1080p
kling-o3-text-to-video Text-to-video t2v, 3–15s, 1080p
veo-3.1-generate-preview Google video preview t2v, 1080p
MiniMax-Hailuo-2.3 High-quality video t2v, 1080p
wan2.6-text-to-video Alibaba latest t2v t2v
sora-2 [BETA] Cinematic, prompt adherence t2v, i2v, 1080p
veo3.1-pro [BETA] Top quality + audio t2v, 1080p auto

26 Stable — Seedance (3), Sora Preview (1), Kling (10), Veo 3.1 (2), Hailuo (3), WAN (7) 11 Beta — Sora 2/Pro/Max/Character (4), Veo 3/3.1 (5), Grok Imagine (2)

Full model list with descriptions: references/video-api-params.md

Generation Flow

Step 1: API Key Check

If 401 occurs: "Your API key isn't working. Check at evolink.ai/dashboard/keys"

Step 2: File Upload (if needed)

For image-to-video or first-last-frame workflows:

  1. upload_file with file_path, base64_data, or file_url → get file_url (sync)
  2. Use file_url as image_urls for generate_video

Supported: JPEG/PNG/GIF/WebP. Max 100MB. Expire in 72h. Quota: 100 (default) / 500 (VIP).

Step 3: Understand Intent

  • Clear ("make a video of a cat dancing") → Go to Step 4
  • Ambiguous ("I want a video") → Ask: "Text-to-video, or do you have a reference image to animate?"

Ask only what's needed, when it's needed.

Step 4: Gather Parameters

Only ask about what's missing:

Parameter Ask when Notes
prompt Always Scene description
model Specific feature needed Default seedance-1.5-pro. See Top Picks for alternatives
duration User mentions length Range varies by model (4–15s typical)
aspect_ratio Portrait/widescreen Default 16:9. Options: 9:16, 1:1, 4:3, 3:4, 21:9
quality Resolution preference 480p / 720p / 1080p / 4k
image_urls Reference image provided 1 image = i2v; 2 images = first+last frame (seedance-1.5-pro only)
generate_audio Using seedance/veo3.1 Ask: "Want auto-generated audio added?"

Step 5: Generate & Poll

  1. Call generate_video → tell user: "Generating your video — ~Xs estimated."
  2. Poll check_task every 10–15s. Report progress %.
  3. After 3 consecutive processing: "Still working — video generation takes a moment..."
  4. Completed: Share URLs. "Links expire in 24h — save promptly."
  5. Failed: Show error + suggestion. Offer retry if retryable.
  6. Timeout (10 min): "Taking longer than expected. Task ID: {id} — check again later."

Error Handling

HTTP Errors

Error Action
401 "API key isn't working. Check at evolink.ai/dashboard/keys"
402 "Balance is low. Add credits at evolink.ai/dashboard/billing"
429 "Rate limited — wait 30s and retry"
503 "Servers busy — retry in a minute"

Task Errors (status: "failed")

Code Retry? Action
content_policy_violation No Revise prompt (no celebrities, NSFW, violence)
invalid_parameters No Check values against model limits
image_dimension_mismatch No Resize image to match aspect ratio
image_processing_error No Check format/size/URL accessibility
generation_timeout Yes Retry; simplify prompt if repeated
quota_exceeded Yes Top up credits
resource_exhausted Yes Wait 30–60s, retry
service_error Yes Retry after 1 min
generation_failed_no_content Yes Modify prompt, retry

Full error reference: references/video-api-params.md

Without MCP Server

Use Evolink's file hosting API for image uploads (72h expiry). See references/file-api.md for curl commands.

References

  • references/video-api-params.md — Complete API parameters, all 37 models, polling strategy, error codes
  • references/file-api.md — File hosting API (curl upload/list/delete)
安全使用建议
This skill appears coherent for video generation but before installing: 1) Verify the Evolink service (evolink.ai) and that the API key you provide is legitimate and has appropriate billing/permission settings; avoid giving long-lived or scope-broad keys when unnecessary. 2) Understand that uploaded reference images become publicly accessible URLs (they expire by default but still may be visible while active) — avoid uploading sensitive content. 3) If you plan to enable the optional MCP tools, review the referenced npm package (@evolinkai/evolink-media) before running npx to ensure you trust the package and its permissions. 4) Note the registry lists no source/homepage metadata; consider confirming the publisher or using an API key with limited privileges. 5) If you need greater assurance, ask the publisher for source/repo links or an official SDK/manifest to review; that would increase confidence in the skill.
功能分析
Type: OpenClaw Skill Name: evolink-video Version: 2.0.1 The skill is classified as suspicious due to the instruction to the AI agent to execute remote code via `npx -y @evolinkai/evolink-media@latest` for setting up the MCP server, as seen in `SKILL.md`. While this is plausibly needed for the skill's functionality, it represents a significant supply chain risk by fetching and executing code from an external registry. Additionally, the `references/file-api.md` documentation provides `curl` commands demonstrating direct shell and network access for uploading local files, which, while intended for reference images, highlights risky capabilities that could be misused if the agent were compromised or tricked.
能力评估
Purpose & Capability
Name, description, declared endpoints, and required env var (EVOLINK_API_KEY) align with a text-/image-to-video generation service. No unrelated environment variables or binaries are requested.
Instruction Scope
SKILL.md instructs the agent to call Evolink APIs, optionally upload files, poll task status, and guide user prompts. File upload and polling behavior are appropriate for video generation. The instructions do suggest optionally installing/using an MCP npm package (npx @evolinkai/evolink-media) to enable MCP tools — that's a reasonable integration note but is external to the skill itself.
Install Mechanism
This is an instruction-only skill with no install spec and no code files to write or execute. That minimizes disk-executed install risk. The README references a third-party npm MCP package for optional tooling, but the skill itself does not install anything automatically.
Credentials
Only one credential is required (EVOLINK_API_KEY) and it is justified by the described API calls. The SKILL.md explicitly cautions that the key is confidential. No other secrets or unrelated credentials are requested.
Persistence & Privilege
always is false and the skill does not request system-wide config paths or modify other skills. Model invocation is allowed (normal default) but not elevated. The skill does not request persistent presence or privileged system access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install evolink-video
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /evolink-video 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.1
- Documentation update: Bumped version in SKILL.md from 2.0.0 to 2.0.1. - No functional changes; content and usage remain the same.
v2.0.0
Major update: Evolink Video 2.0.0 introduces user-invocable mode, onboarding prompts, and expanded API/UX documentation. - Added onboarding greetings to guide user setup based on MCP/server/API key readiness. - Skill is now user-invocable (`user-invocable: true`). - Added detailed setup and usage guidance, including external API endpoints and privacy notes. - Outlined core conversation principles for more interactive user sessions. - Expanded error handling with user-friendly responses and retry guidance. - Added two reference docs: `references/file-api.md` and `references/video-api-params.md` for full API/parameter details.
v1.3.0
Add mcporter MCP bridge setup and direct file hosting fallback
v1.2.0
Simplify file upload description to fix VT false positive
v1.1.1
Add file upload tools (upload_file, delete_file, list_files) for i2v and video editing workflows
v1.1.0
Add file upload tools (upload_file, delete_file, list_files) for i2v and video editing workflows
v1.0.0
Initial release of evolink-video: AI video generation with 37 models. - Supports text-to-video, image-to-video, first/last-frame, video editing, and audio generation. - Includes major models: Sora, Kling, Veo 3, Seedance, Hailuo, WAN, Grok. - Unified workflow: `generate_video`, `check_task`, `list_models`, `estimate_cost`. - Flexible parameters for prompt, model, duration, aspect ratio, quality, reference images, and audio. - Requires a single API key (EVOLINK_API_KEY).
元数据
Slug evolink-video
版本 2.0.1
许可证
累计安装 6
当前安装数 5
历史版本数 7
常见问题

Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance) 是什么?

AI video generation — Sora, Kling, Veo 3, Seedance, Hailuo, WAN, Grok. Text-to-video, image-to-video, video editing. 37 models, one API key. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1056 次。

如何安装 Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install evolink-video」即可一键安装,无需额外配置。

Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance) 是免费的吗?

是的,Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance) 完全免费(开源免费),可自由下载、安装和使用。

Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance) 支持哪些平台?

Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(macos, linux, windows)。

谁开发了 Evolink Video — AI Video Generation (Sora, Kling, Veo 3, Seedance)?

由 EvolinkAI(@evolinkai)开发并维护,当前版本 v2.0.1。

💬 留言讨论