Video Editing With Claude
PassAudited by ClawScan on May 10, 2026.
Overview
This is a coherent cloud video-editing skill, but it will connect to NemoVideo, use or create a service token, upload selected media, and run cloud render jobs.
Install only if you are comfortable sending selected video/audio/image files to NemoVideo’s cloud API. Use a dedicated token if possible, avoid uploading sensitive footage, and ask for confirmation before export if credit usage matters.
Findings (5)
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.
Raw footage you provide may be uploaded to NemoVideo, and export jobs may consume service credits.
The skill is explicitly designed to call external upload and render endpoints. This is expected for cloud video editing, but it means selected videos and export actions leave the local environment and are handled by a third-party service.
All calls go to `https://mega-api-prod.nemovideo.ai`. The main endpoints: ... **Upload** ... **Export** — `POST /api/render/proxy/lambda` ...
Only provide media you intend to send to the cloud service, and confirm export/credit usage when working with important or private footage.
The skill can act under the NemoVideo token available in your environment or under an anonymous token it obtains.
The skill uses a bearer token for the NemoVideo API or generates an anonymous token. This is normal for the service integration, and the artifact also says not to print tokens.
**Token**: If `NEMO_TOKEN` environment variable is already set, use it ... **Free token**: Generate a UUID ... `data.token` becomes your NEMO_TOKEN ... Include `Authorization: Bearer <NEMO_TOKEN>` ... on every request
Use a dedicated token when possible, avoid sharing logs containing credentials, and monitor account credits if using a paid or persistent token.
Project state and media metadata may remain available to the cloud service during the editing session.
The workflow stores and reuses server-side session, draft, and media state. This is expected for multi-step video editing, but it is persistent context held by the provider during the session.
**Session**: POST ... Save `session_id` from the response ... **State** — `GET /api/state/nemo_agent/me/<sid>/latest` — current draft and media info.
Avoid uploading highly sensitive media unless you trust the provider’s retention and deletion practices.
A cloud render may keep running briefly even if you stop watching the session.
Render jobs can continue on the provider after the user closes the tab, and the workflow includes repeated polling. This is purpose-aligned for cloud rendering but is worth user awareness.
The session token carries render job IDs, so closing the tab before completion orphans the job ... Poll `GET /api/render/proxy/lambda/<id>` every 30s for `completed` status
Check job status and credits after starting exports, especially for longer videos.
Provider responses may cause the agent to take additional in-service actions such as checking state or starting export.
The skill asks the agent to translate backend GUI-style responses into API actions. This appears limited to the stated video-editing service, but it means remote service responses can influence follow-on actions.
The backend responds as if there's a visual interface. Map its instructions to API calls: ... "click" ... → execute the action via the relevant endpoint ... "Export" ... → run the export workflow
Ask the agent to confirm before exporting or making credit-consuming changes if you want tighter control.
