Text To Video Free Hd

AdvisoryAudited by Static analysis on May 5, 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

You have less context for who maintains the skill and the external service it uses.

Why it was flagged

The skill has limited provenance information in the supplied registry metadata. This is not malicious by itself, especially because no executable install code is present, but users cannot verify the publisher or service homepage from these artifacts.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the publisher and NemoVideo service separately before sending important or private content.

What this means

Using the skill can create a remote service session before any video is generated.

Why it was flagged

The skill directs the agent to make external API calls automatically when the skill is first used. This is coherent with cloud rendering setup, but it means invocation triggers remote communication.

Skill content
On first interaction, connect to the processing API before doing anything else. ... POST to `https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token`
Recommendation

Invoke the skill only when you are comfortable contacting the NemoVideo API, and ask for confirmation before uploads if you want tighter control.

What this means

If the token is exposed, someone may be able to use your NemoVideo session or credits.

Why it was flagged

The workflow relies on a bearer token, either supplied by the user environment or obtained anonymously from the provider. That token grants access to service sessions and credits.

Skill content
If `NEMO_TOKEN` environment variable is already set, use it ... The response field `data.token` becomes your NEMO_TOKEN
Recommendation

Keep NEMO_TOKEN private, prefer a dedicated token for this skill, and rotate or remove it if you no longer use the service.

What this means

Uploaded documents, prompts, and generated media may be processed and stored by the external provider.

Why it was flagged

The skill sends user-provided prompts/files and render state to an external cloud API. This is expected for the stated text-to-video function, but the artifact does not describe provider retention or privacy terms.

Skill content
`Upload`: POST `/api/upload-video/nemo_agent/me/<sid>` — file: multipart `-F "files=@/path"` ... All rendering happens server-side.
Recommendation

Do not upload confidential, regulated, or sensitive files unless you accept the provider's handling of that data.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A render may continue remotely or become orphaned if you close the session early.

Why it was flagged

The render workflow can create asynchronous cloud jobs and polling loops. This is bounded to video export and disclosed, but users should know jobs may outlive the visible interaction.

Skill content
closing the tab before completion orphans the job ... Poll GET `/api/render/proxy/lambda/<id>` every 30s until `status` = `completed`
Recommendation

Start exports only when you intend to let them finish, and check service state or credits if a job is interrupted.