Image Upscaling

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent image-upscaling skill, but it relies on an external CLI, account login, and cloud processing that users should verify before use.

Before installing, confirm you trust inference.sh and its CLI installer, understand that images or image URLs will be sent to cloud providers, and review infsh commands before allowing anything beyond normal upscaling.

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.

What this means

The agent may be able to run inference.sh CLI commands under the user's configured session when the skill is invoked.

Why it was flagged

The skill permits the agent to run infsh CLI commands using a wildcard, which is broader than a single fixed upscaling command even though it is aligned with the stated CLI-based purpose.

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

Use the skill for expected image-upscaling commands and review any infsh command before allowing account-affecting or unexpected actions.

What this means

Inference jobs may run through the user's inference.sh account and could use that account's permissions or billing context.

Why it was flagged

The workflow expects the user to authenticate to inference.sh. That is purpose-aligned for a hosted inference CLI, but it means the skill uses an external account session.

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

Log in only with an account intended for this use and monitor any provider usage, permissions, or billing settings.

What this means

Installing the CLI runs code obtained from an external domain on the user's machine.

Why it was flagged

The setup uses a remote shell installer outside the skill package. The artifact states it verifies checksums, but users still depend on the external installer and download source.

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

Prefer the documented manual install and checksum verification if possible, and only install from the official inference.sh source.

What this means

Private or sensitive image URLs may be processed by external services.

Why it was flagged

The examples show image URLs being sent to hosted inference apps. This is expected for cloud upscaling, but it creates an external data boundary.

Skill content
infsh app run falai/topaz-image-upscaler --input '{...image_url...}'
Recommendation

Use images you are comfortable sending to the provider, and review inference.sh/falai data handling policies for sensitive content.