Ai Marketing Videos
Analysis
The skill is a coherent marketing-video helper, but users should notice that it depends on installing and logging into an external cloud CLI.
Findings (4)
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 setup directs users to execute a remote installer script for the external CLI. This is central to the skill's purpose and user-directed, but it is still an installer provenance and trust decision.
allowed-tools: Bash(infsh *)
The skill permits Bash calls to the `infsh` CLI. That matches the stated workflow, but it allows a broad set of inference.sh CLI operations rather than narrowly limiting execution to one model.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
infsh login
The skill expects the user to authenticate to inference.sh. This is appropriate for a cloud generation service, but it means the skill operates through the user's external account context.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
infsh app run google/veo-3-1-fast --input '{ "prompt": "Sleek product reveal video..." }'The examples submit prompts to external model apps through inference.sh. This is the expected service flow, but user-provided product, brand, or campaign details may leave the local environment.
