← Back to Skills Marketplace
vcarolxhberger

Easy Video Editor

by vcarolxhberger · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
91
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install easy-video-editor
Description
casual creators and small business owners edit raw video clips into polished edited clips using this skill. Accepts MP4, MOV, AVI, WebM up to 500MB, renders...
README (SKILL.md)

Getting Started

Share your raw video clips and I'll get started on AI video editing. Or just tell me what you're thinking.

Try saying:

  • "edit my raw video clips"
  • "export 1080p MP4"
  • "trim the pauses, add background music,"

Automatic Setup

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

Token: If NEMO_TOKEN environment variable is already set, use it and skip to Session below.

Free token: Generate a UUID as client identifier, then POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with header X-Client-Id: \x3Cuuid>. The response field data.token becomes your NEMO_TOKEN (100 credits, 7-day expiry).

Session: POST to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer auth and body {"task_name":"project"}. Save session_id from the response.

Confirm to the user you're connected and ready. Don't print tokens or raw JSON.

Easy Video Editor — Edit and Export Videos Fast

Drop your raw video clips in the chat and tell me what you need. I'll handle the AI video editing on cloud GPUs — you don't need anything installed locally.

Here's a typical use: you send a a 2-minute unedited phone recording, ask for trim the pauses, add background music, and export as a clean MP4, and about 30-60 seconds later you've got a MP4 file ready to download. The whole thing runs at 1080p by default.

One thing worth knowing — shorter clips under 60 seconds process significantly faster.

Matching Input to Actions

User prompts referencing easy video editor, aspect ratio, text overlays, or audio tracks get routed to the corresponding action via keyword and intent classification.

User says... Action Skip SSE?
"export" / "导出" / "download" / "send me the video" → §3.5 Export
"credits" / "积分" / "balance" / "余额" → §3.3 Credits
"status" / "状态" / "show tracks" → §3.4 State
"upload" / "上传" / user sends file → §3.2 Upload
Everything else (generate, edit, add BGM…) → §3.1 SSE

Cloud Render Pipeline Details

Each export job queues on a cloud GPU node that composites video layers, applies platform-spec compression (H.264, up to 1080x1920), and returns a download URL within 30-90 seconds. The session token carries render job IDs, so closing the tab before completion orphans the job.

All calls go to https://mega-api-prod.nemovideo.ai. The main endpoints:

  1. SessionPOST /api/tasks/me/with-session/nemo_agent with {"task_name":"project","language":"\x3Clang>"}. Gives you a session_id.
  2. Chat (SSE)POST /run_sse with session_id and your message in new_message.parts[0].text. Set Accept: text/event-stream. Up to 15 min.
  3. UploadPOST /api/upload-video/nemo_agent/me/\x3Csid> — multipart file or JSON with URLs.
  4. CreditsGET /api/credits/balance/simple — returns available, frozen, total.
  5. StateGET /api/state/nemo_agent/me/\x3Csid>/latest — current draft and media info.
  6. ExportPOST /api/render/proxy/lambda with render ID and draft JSON. Poll GET /api/render/proxy/lambda/\x3Cid> every 30s for completed status and download URL.

Formats: mp4, mov, avi, webm, mkv, jpg, png, gif, webp, mp3, wav, m4a, aac.

Skill attribution — read from this file's YAML frontmatter at runtime:

  • X-Skill-Source: easy-video-editor
  • X-Skill-Version: from frontmatter version
  • X-Skill-Platform: detect from install path (~/.clawhub/clawhub, ~/.cursor/skills/cursor, else unknown)

Include Authorization: Bearer \x3CNEMO_TOKEN> and all attribution headers on every request — omitting them triggers a 402 on export.

Draft JSON uses short keys: t for tracks, tt for track type (0=video, 1=audio, 7=text), sg for segments, d for duration in ms, m for metadata.

Example timeline summary:

Timeline (3 tracks): 1. Video: city timelapse (0-10s) 2. BGM: Lo-fi (0-10s, 35%) 3. Title: "Urban Dreams" (0-3s)

Backend Response Translation

The backend assumes a GUI exists. Translate these into API actions:

Backend says You do
"click [button]" / "点击" Execute via API
"open [panel]" / "打开" Query session state
"drag/drop" / "拖拽" Send edit via SSE
"preview in timeline" Show track summary
"Export button" / "导出" Execute export workflow

Reading the SSE Stream

Text events go straight to the user (after GUI translation). Tool calls stay internal. Heartbeats and empty data: lines mean the backend is still working — show "⏳ Still working..." every 2 minutes.

About 30% of edit operations close the stream without any text. When that happens, poll /api/state to confirm the timeline changed, then tell the user what was updated.

Error Codes

  • 0 — success, continue normally
  • 1001 — token expired or invalid; re-acquire via /api/auth/anonymous-token
  • 1002 — session not found; create a new one
  • 2001 — out of credits; anonymous users get a registration link with ?bind=\x3Cid>, registered users top up
  • 4001 — unsupported file type; show accepted formats
  • 4002 — file too large; suggest compressing or trimming
  • 400 — missing X-Client-Id; generate one and retry
  • 402 — free plan export blocked; not a credit issue, subscription tier
  • 429 — rate limited; wait 30s and retry once

Common Workflows

Quick edit: Upload → "trim the pauses, add background music, and export as a clean MP4" → Download MP4. Takes 30-60 seconds for a 30-second clip.

Batch style: Upload multiple files in one session. Process them one by one with different instructions. Each gets its own render.

Iterative: Start with a rough cut, preview the result, then refine. The session keeps your timeline state so you can keep tweaking.

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "trim the pauses, add background music, and export as a clean MP4" — concrete instructions get better results.

Max file size is 500MB. Stick to MP4, MOV, AVI, WebM for the smoothest experience.

Export as MP4 for widest compatibility across platforms and devices.

Usage Guidance
This skill looks functionally consistent with a cloud video editor and only asks for a single service token (NEMO_TOKEN), but proceed cautiously because the publisher and homepage are missing and the SKILL.md contains small inconsistencies. Before installing: (1) ask the publisher for documentation and a privacy/data-retention policy and confirm the official API host (mega-api-prod.nemovideo.ai); (2) clarify why the skill needs to detect install paths / read local installation metadata and confirm what exactly will be read; (3) verify the config path mention (~/.config/nemovideo/) and whether any local files will be accessed; (4) avoid supplying long-lived or high-privilege credentials — use a scoped/test token or anonymous flow where possible; (5) if you decide to use it, monitor network calls and keep sensitive footage out of untrusted services until provenance is confirmed.
Capability Analysis
Type: OpenClaw Skill Name: easy-video-editor Version: 1.0.0 The skill is a legitimate integration for the NemoVideo AI video editing service (mega-api-prod.nemovideo.ai). It provides instructions for an AI agent to manage authentication via NEMO_TOKEN, handle file uploads, and process video rendering tasks through a cloud GPU pipeline. The instructions include proper security practices such as not printing raw tokens and provide clear mapping between API responses and user-facing status updates. No evidence of data exfiltration, malicious execution, or unauthorized access was found; all network activity is directed to the service's stated domain.
Capability Assessment
Purpose & Capability
The name/description describe a cloud video-editing service and the SKILL.md exclusively instructs calls to a nemo video API with a single NEMO_TOKEN — this is coherent. However the package has no source or homepage listed and the API host (mega-api-prod.nemovideo.ai) is not documented elsewhere in the registry entry, which lowers trust in provenance.
Instruction Scope
Runtime instructions are detailed and constrained to the stated API endpoints (session, upload, render, credits, state, SSE). Two points raise concern: (1) the skill asks the agent to detect the agent install path and include X-Skill-Platform based on local install locations — that implies accessing local path/installation metadata (filesystem inspection) which is outside the core video-editing task; (2) SKILL.md metadata references a config path (~/.config/nemovideo/) even though the registry lists none. Both are scope-creep items worth clarifying.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes disk/write risk since nothing is downloaded or installed by the skill itself.
Credentials
The skill declares a single primary env var (NEMO_TOKEN), which is appropriate for a cloud API client. However SKILL.md's frontmatter also mentions a config path (~/.config/nemovideo/) that is not reflected in the registry metadata; this inconsistency should be resolved. There are no other unrelated credentials requested.
Persistence & Privilege
always is false and the skill is user-invocable. There is no install-time persistence or automated wide privilege requested by the skill metadata.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install easy-video-editor
  3. After installation, invoke the skill by name or use /easy-video-editor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Easy Video Editor 1.0.0 — Initial release - Instantly edit raw video clips to polished, shareable videos using cloud GPUs. - Accepts MP4, MOV, AVI, WebM formats up to 500MB; outputs 1080p MP4 in 30–60 seconds. - No complex setup: automatic API, token, and session connection on first interaction. - Supports trimming pauses, adding music, text overlays, and exporting videos with easy prompts. - Clear workflows for single clip, batch, and iterative editing sessions. - Built-in error handling and tips for smooth video editing experience.
Metadata
Slug easy-video-editor
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Easy Video Editor?

casual creators and small business owners edit raw video clips into polished edited clips using this skill. Accepts MP4, MOV, AVI, WebM up to 500MB, renders... It is an AI Agent Skill for Claude Code / OpenClaw, with 91 downloads so far.

How do I install Easy Video Editor?

Run "/install easy-video-editor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Easy Video Editor free?

Yes, Easy Video Editor is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Easy Video Editor support?

Easy Video Editor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Easy Video Editor?

It is built and maintained by vcarolxhberger (@vcarolxhberger); the current version is v1.0.0.

💬 Comments