Ai Video Generation
Analysis
This skill is a coherent AI video-generation wrapper for the inference.sh CLI, with user-noticeable setup, login, and external media-processing considerations.
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 -fsSL https://cli.inference.sh | sh && infsh login
The skill tells users to install a remote CLI installer before use. This is aligned with the stated CLI-based purpose, but it relies on a remote installation source that is not included as an install spec artifact.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
infsh login
The setup flow includes logging into inference.sh. That is expected for a hosted AI inference service, but users should recognize that account authorization may be needed even though the registry metadata lists no primary credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
infsh app run bytedance/omnihuman-1-5 --input '{ "image_url": "https://portrait.jpg", "audio_url": "https://speech.mp3" }'The examples pass prompts and media URLs to external inference.sh apps and model providers. This is central to video generation, but it means user-provided media or links may leave the local environment.
