Youtube Thumbnail Design

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

Installing the CLI means trusting an external download source before using the skill’s image-generation workflow.

Why it was flagged

The skill directs users to install a third-party CLI through a remote shell script. This is disclosed and purpose-aligned, but users should verify the installer and source before running it.

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

Review the installer source, use the documented manual checksum verification if possible, and install only if you trust inference.sh.

What this means

The agent may be able to run inference.sh commands for external model generation, which could consume service credits or create outputs through that account.

Why it was flagged

The skill allows Bash execution for inference.sh CLI commands. This is aligned with generating thumbnails, but it is broader than a single fixed generation command.

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

Use the skill for user-requested thumbnail generation only, and review generated prompts or commands before running them if account cost or usage matters.

What this means

Using the skill may rely on your inference.sh account and any billing, quota, or access permissions attached to it.

Why it was flagged

The workflow requires logging into inference.sh. This is expected for a hosted generation service, but it introduces account/session authority not declared as a registry credential.

Skill content
infsh login
Recommendation

Log in with an account appropriate for this use, and avoid giving the CLI broader access than needed.

What this means

Thumbnail prompts or creative details you provide may be processed by external AI services.

Why it was flagged

The examples submit prompts to hosted model providers through inference.sh, including falai and bytedance models. This is disclosed and central to the skill, but it means prompt content is sent externally.

Skill content
infsh app run falai/flux-dev-lora --input ...
Recommendation

Do not include private, confidential, or unreleased information in prompts unless you are comfortable sending it to the provider.