video 生成流水线
Analysis
This is a coherent video-generation pipeline, but it uses your Zhipu API key and sends storyboard prompts to an external video service.
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.
python3 scripts/video-generate.py --output-dir ./output_videos
The normal workflow runs a local Python script that submits three video-generation jobs and may download MP4 outputs. This is disclosed and central to the skill, but it is still a user-visible network/tool action.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
环境变量:`ZHIPUAI_API_KEY`(必填);可选 `BIGMODEL_API_BASE`
The skill requires a provider API key and can use a configurable API base. This is expected for CogVideoX-3 access, but users should treat the key as account authority.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"prompt": prompt[:512], ... out = _request_json("POST", url, api_key, body)Storyboard prompts are sent to the configured video-generation API endpoint. This matches the skill purpose, but it means creative brief content leaves the local project.
