Alibaba Ai Video Wan Video
Analysis
The skill mostly matches Alibaba video generation, but its scripts contain a hardcoded DashScope API key that can be used silently, so it should be reviewed before installation.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
curl -s -X POST "$ENDPOINT" ... -H "Authorization: Bearer $API_KEY" ... -d "$REQUEST_DATA"
The script sends the user prompt and generation parameters to Alibaba DashScope and later downloads the returned video to the requested output path; this is purpose-aligned but is still an external API and local file-write workflow.
{baseDir}/scripts/wanx-i2v.sh ... {baseDir}/scripts/wanx-digital-human.shSKILL.md references helper scripts for image-to-video and digital-human workflows, but the provided manifest includes only scripts/generate-video.sh and scripts/wanx-video.sh.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
API_KEY="${DASHSCOPE_API_KEY:-sk-96743...}"The main script silently uses an embedded DashScope API key when the required user environment variable is missing, so API calls may run under an undisclosed credential rather than the user's configured account.
