SiliconFlow Video Gen

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears aligned with its stated video-generation purpose, but it uses local execution and a SiliconFlow API key to submit paid provider requests.

Before installing, confirm you are comfortable giving the skill access to a SiliconFlow API key and allowing it to submit paid video-generation jobs. The behavior is disclosed and purpose-aligned, but using a limited-scope or low-balance provider key is prudent.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill can use your SiliconFlow account key to submit video-generation jobs and consume account credits.

Why it was flagged

The skill reads a provider credential from the environment or OpenClaw config. This is purpose-aligned and disclosed, but it is still account-level credential access.

Skill content
api_key = os.environ.get("SILICONFLOW_API_KEY") ... config_path = os.path.expanduser("~/.openclaw/openclaw.json") ... api_key = siliconflow.get("apiKey")
Recommendation

Use a dedicated SiliconFlow key with appropriate spending limits, and remove it from the environment or config when you no longer want the skill to access it.

What this means

When invoked, the skill can submit a paid generation job to SiliconFlow using your credentials.

Why it was flagged

The skill uses a local command to POST the prompt, optional image URL, and model to SiliconFlow. This matches the advertised purpose and does not use shell interpolation, but it is still an external action with possible billing impact.

Skill content
curl_cmd = ["curl", "-s", "-X", "POST", f"{API_BASE_URL}/video/submit", ... "-d", json.dumps(data)]
Recommendation

Invoke it only when you intend to create a video, and review the prompt, image URL, model, and provider pricing before use.

What this means

It may be harder to verify the publisher or compare the installed package with an upstream repository.

Why it was flagged

The registry metadata does not provide a verified upstream source or homepage. The included source code is available for review, so this is a provenance note rather than evidence of hidden behavior.

Skill content
Source: unknown; Homepage: none; No install spec — this is an instruction-only skill.
Recommendation

Review the included files before installing and prefer packages with clear source and homepage metadata when available.