hd-txt2img-v2L

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

Running the skill can create image-generation tasks under the user's Hidream account.

Why it was flagged

The script submits an image-generation task to Hidream using user-provided parameters. This matches the stated purpose, but it is still an external API action that can affect account quota or cost.

Skill content
submit_resp = requests.post(gen_task_url, json=payload, headers=headers, timeout=30)
Recommendation

Use it only with user-approved prompts and settings, and be aware of any Hidream usage limits or costs.

What this means

Anyone who obtains the token may be able to use the associated Hidream account or quota.

Why it was flagged

The skill uses a bearer token supplied by CLI argument or environment variable. This is expected for the Hidream API, but it is sensitive account access and the registry metadata does not declare a primary credential.

Skill content
authorization = args.authorization or os.getenv("HIDREAM_AUTHORIZATION", "") ... "Authorization": f"Bearer {authorization}"
Recommendation

Prefer an environment variable or secret manager over pasting real tokens into command lines, use a limited-scope token if available, and rotate the token if it appears in logs or shell history.

What this means

Sensitive text included in prompts may be processed by the external Hidream service.

Why it was flagged

The artifact clearly discloses that the user's prompt is sent to Hidream's external API. This is purpose-aligned, but prompt contents leave the local environment.

Skill content
`POST https://www.hidreamai.com/api-pub/gw/v3/image/txt2img/async` ... `prompt` (string): text prompt
Recommendation

Do not include confidential or regulated information in prompts unless that is acceptable under the user's Hidream agreement and data-handling requirements.