AI Media Generation

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

Anyone with the key may be able to use the user's AIsa account or quota.

Why it was flagged

The script uses AISA_API_KEY as a bearer token for AIsa API calls, which is expected for the service but still grants account/API usage authority.

Skill content
"Authorization": f"Bearer {api_key}",
Recommendation

Store the key as an environment variable, do not paste it into prompts or shared logs, and rotate it if exposed.

What this means

Private prompts or private image URLs could be disclosed to the external provider if the user supplies them.

Why it was flagged

User prompts and reference image URLs are sent to the external AIsa video-generation API as part of the intended workflow.

Skill content
"input": { "prompt": prompt, "img_url": img_url }
Recommendation

Avoid sensitive prompts or non-public image URLs unless you are comfortable with AIsa handling that data under its terms.

What this means

A chosen output path may create or overwrite local media files.

Why it was flagged

Generated media is saved to local files, using a user-provided output path when supplied.

Skill content
out_path = args.out or _safe_filename(ext)
with open(out_path, "wb") as f:
    f.write(data)
Recommendation

Use deliberate output filenames and avoid pointing the tool at important existing files.

What this means

Users have less information for independently verifying the publisher or code history.

Why it was flagged

The registry metadata does not identify a source repository, which limits provenance visibility even though no risky install script is present.

Skill content
Source: unknown
Recommendation

Review the included files and install only if you trust the listed publisher and distribution channel.