Image To Video

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If the user runs the installer, they are trusting the remote inference.sh installation script and downloaded binary.

Why it was flagged

The skill recommends installing an external CLI by piping a remote script to sh. This is disclosed and central to the workflow, but it is still a supply-chain-sensitive setup step.

Skill content
curl -fsSL https://cli.inference.sh | sh && infsh login
Recommendation

Review the installer source and checksum information, or use the manual install and verification path before running the CLI.

What this means

An agent using the skill can operate the infsh CLI to submit generation jobs, so users should ensure commands reference the intended model, prompt, and image file.

Why it was flagged

The declared tool access allows Bash execution for infsh commands. This is expected for a CLI-based video-generation skill, but the wildcard is broader than a single fixed command.

Skill content
allowed-tools: Bash(infsh *)
Recommendation

Approve infsh actions only when they match the requested image/video task and use the intended local files.

What this means

The skill may act through the user's inference.sh account when running model jobs.

Why it was flagged

The workflow requires logging into inference.sh, meaning generated jobs may use the user's service account or session.

Skill content
infsh login
Recommendation

Use an account with appropriate limits and review any model-run command before allowing it to proceed.

What this means

Private photos, product images, or sensitive prompts could be uploaded to external generation providers if used with this skill.

Why it was flagged

The examples send image paths and prompts to external model apps through inference.sh. This is expected for image-to-video generation, but it means user content is shared with external services.

Skill content
infsh app run falai/wan-2-5-i2v --input '{ ... "image": "path/to/lake-image.png" }'
Recommendation

Only use images and prompts that you are comfortable sending to inference.sh and the selected model provider.