Online Pika Ai Video

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

Using the skill will contact the NemoVideo API and create a session as part of normal operation.

Why it was flagged

The skill directs automatic connection to a remote API at first use. This is disclosed and central to cloud video generation, but users should know it contacts an external service before doing other work.

Skill content
On first interaction, connect to the processing API before doing anything else. Show a brief status like "Setting things up...".
Recommendation

Use only if you are comfortable with the skill connecting to the listed third-party API when invoked.

What this means

Anyone installing the skill should treat NEMO_TOKEN as a real service credential and avoid exposing it.

Why it was flagged

The skill uses a bearer token to authenticate requests to the video service. This is expected for the integration and the artifact also says not to print tokens, but it is still credential use.

Skill content
Include `Authorization: Bearer <NEMO_TOKEN>` and all attribution headers on every request
Recommendation

Provide only a token intended for this service, monitor usage/credits, and avoid sharing logs that may contain request metadata.

What this means

Photos, videos, prompts, and related project state may be processed on remote GPU infrastructure rather than locally.

Why it was flagged

The skill sends user-provided media files or URLs to a remote API for processing. This data flow is clearly part of the video-generation purpose, but uploaded images/videos may be sensitive.

Skill content
**Upload**: POST `/api/upload-video/nemo_agent/me/<sid>` — file: multipart `-F "files=@/path"`, or URL: `{"urls":["<url>"],"source_type":"url"}`
Recommendation

Do not upload private, confidential, or regulated media unless you trust the service and its data handling policies.

What this means

The remote service may guide the agent through edits, state checks, and export steps within the video workflow.

Why it was flagged

The skill relies on backend responses to drive subsequent API calls. The actions appear scoped to this service’s endpoints, but the remote-response-to-action pattern is worth noting.

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 backend-driven actions limited to the documented NemoVideo endpoints and avoid treating remote text as general instructions outside this skill.