Script To Video Ai

PassAudited by VirusTotal on May 6, 2026.

Overview

Type: OpenClaw Skill Name: script-to-video-ai Version: 1.0.0 The skill is a functional integration for the NemoVideo AI service, designed to convert text scripts into videos. It handles authentication via anonymous tokens or environment variables (NEMO_TOKEN) and communicates with a dedicated API (mega-api-prod.nemovideo.ai) to process video rendering tasks. The instructions in SKILL.md are focused on task execution, error handling, and user experience, with no evidence of data exfiltration, malicious execution, or harmful prompt injection.

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

The agent may perform video-project actions through the provider API based on backend messages during a generation/editing flow.

Why it was flagged

The skill tells the agent to convert backend responses into API actions. This is expected for a cloud video workflow, but users should know actions may be driven by backend responses rather than direct local UI clicks.

Skill content
The backend responds as if there's a visual interface. Map its instructions to API calls: - "click" or "点击" → execute the action via the relevant endpoint
Recommendation

Keep usage tied to explicit user requests and confirm before any action that may consume credits, export content, or materially change the project.

What this means

Anyone with the token could potentially use the associated video-generation session or credits until it expires.

Why it was flagged

The skill uses a bearer token for the Nemovideo service. This is purpose-aligned, but the token authorizes sessions and credits for the backend.

Skill content
Authentication: Check if `NEMO_TOKEN` is set... POST to `https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token`... The response `data.token` is your NEMO_TOKEN
Recommendation

Treat NEMO_TOKEN as a secret, use a dedicated token when possible, and avoid sharing logs or transcripts that might expose it.

What this means

Scripts, documents, audio, images, or video assets you upload may be processed by the external Nemovideo service.

Why it was flagged

The skill sends user-provided files or URLs to an external processing backend. This is central to cloud rendering, but the artifacts do not describe provider retention or privacy handling.

Skill content
API base: `https://mega-api-prod.nemovideo.ai` ... Upload: POST `/api/upload-video/nemo_agent/me/<sid>` — file: multipart `-F "files=@/path"`, or URL
Recommendation

Only upload files you are comfortable sending to that provider, especially if scripts contain confidential business, personal, or unreleased content.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A render job may keep running on the provider side even if you close the client before completion.

Why it was flagged

The skill maintains a backend session and render jobs can continue independently once started. This is expected for cloud rendering but is persistent behavior users should notice.

Skill content
Store the returned `session_id` for all subsequent requests... closing the tab before completion orphans the job.
Recommendation

Start renders only when intended, and check project status or provider controls if you need to stop or discard a job.