Flux Image

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent image-generation skill for inference.sh, but users should notice that it installs and logs into an external CLI and sends prompts or image URLs to that service.

Before installing, confirm that you trust inference.sh, consider using the manual checksum verification path instead of blindly running the curl-to-shell installer, log in only with an account you intend the agent to use, and avoid submitting confidential images or prompts unless that is acceptable under your data-handling requirements.

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

Installing the CLI may run code from inference.sh on the local machine.

Why it was flagged

The setup path runs a remote installer script to obtain the CLI. This is disclosed and central to the skill's purpose, but users must trust the external installer source.

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

Install only if you trust inference.sh, prefer the documented manual checksum verification when possible, and review the installer source before running it.

What this means

An agent using the skill could run unexpected infsh commands if a request is ambiguous or if the user does not review command intent.

Why it was flagged

The skill can invoke any infsh CLI subcommand, not only the listed image-generation commands. This is consistent with a CLI integration but broader than a narrowly scoped wrapper.

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

Review infsh commands before approving sensitive actions, and restrict tool scope to the specific app-run commands if your environment supports narrower permissions.

What this means

Generated-image requests will use the authenticated inference.sh account available to the CLI.

Why it was flagged

The skill instructs users to authenticate to inference.sh. That is expected for using the service, but it means the skill operates with an external account session.

Skill content
infsh login
Recommendation

Use an appropriate account, understand what access the CLI receives, and avoid leaving shared environments logged into accounts you do not want agents to use.

What this means

Private prompts or image URLs provided to the skill may be processed by external services.

Why it was flagged

Prompts and image URLs are sent to an external inference app. This is disclosed and required for the stated image-generation purpose.

Skill content
infsh app run falai/flux-dev-lora --input '{ "prompt": "transform to watercolor style", "image_url": "https://your-image.jpg" }'
Recommendation

Do not send confidential images, private URLs, or sensitive prompt content unless you are comfortable with inference.sh and the underlying app handling that data.