Login Video Editor
Analysis
This skill appears to be a legitimate cloud video editor, but it uploads footage to an external Nemo Video backend and uses token-based remote sessions.
Findings (7)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
| "click [button]" / "点击" | Execute via API | ... | "Export button" / "导出" | Execute export workflow |
Backend text is explicitly translated into API actions, which makes remote backend responses partially authoritative for what the agent does next.
Upload — `POST /api/upload-video/nemo_agent/me/<sid>` ... Export — `POST /api/render/proxy/lambda` with render ID and draft JSON.
The skill instructs the agent to use remote API operations that upload media, modify a cloud draft, and start render jobs.
Source: unknown; Homepage: none
The registry entry does not provide source or homepage provenance, even though the skill relies on an external cloud service.
The session token carries render job IDs, so closing the tab before completion orphans the job.
Interrupted sessions can leave remote render jobs detached from the user workflow.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Every API call needs `Authorization: Bearer <NEMO_TOKEN>`
The skill uses a bearer token as its primary credential for all Nemo Video API calls.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Keep the returned `session_id` for all operations. ... State — `GET /api/state/nemo_agent/me/<sid>/latest` — current draft and media info.
The workflow maintains remote session state and retrieves current draft/media context that can influence later actions.
All calls go to `https://mega-api-prod.nemovideo.ai`. ... Chat (SSE) — `POST /run_sse` with `session_id` and your message
The agent exchanges messages and session data with an external provider endpoint, including an SSE chat-style backend.
