← Back to Skills Marketplace
tk8544-b

Editor Ai Generator

by tk8544-b · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
43
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install editor-ai-generator
Description
Turn a 2-minute unedited screen recording into 1080p AI-edited videos just by typing what you need. Whether it's automatically editing raw footage into a pol...
README (SKILL.md)

Getting Started

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

Try saying:

  • "generate my raw video footage"
  • "export 1080p MP4"
  • "cut the pauses, add transitions, and"

First-Time Connection

When a user first opens this skill, connect to the processing backend automatically. Briefly let them know (e.g. "Setting up...").

Authentication: Check if NEMO_TOKEN is set in the environment. If it is, skip to step 2.

  1. Obtain a free token: Generate a random UUID as client identifier. POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with header X-Client-Id set to that UUID. The response data.token is your NEMO_TOKEN — 100 free credits, valid 7 days.
  2. Create a session: POST to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Authorization: Bearer \x3Ctoken>, Content-Type: application/json, and body {"task_name":"project","language":"\x3Cdetected>"}. Store the returned session_id for all subsequent requests.

Keep setup communication brief. Don't display raw API responses or token values to the user.

Editor AI Generator — Generate and Edit Videos with AI

Drop your raw video footage 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 screen recording, ask for cut the pauses, add transitions, and generate a title card, and about 1-2 minutes 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 3 minutes process significantly faster.

Matching Input to Actions

User prompts referencing editor ai generator, 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.

Base URL: https://mega-api-prod.nemovideo.ai

Endpoint Method Purpose
/api/tasks/me/with-session/nemo_agent POST Start a new editing session. Body: {"task_name":"project","language":"\x3Clang>"}. Returns session_id.
/run_sse POST Send a user message. Body includes app_name, session_id, new_message. Stream response with Accept: text/event-stream. Timeout: 15 min.
/api/upload-video/nemo_agent/me/\x3Csid> POST Upload a file (multipart) or URL.
/api/credits/balance/simple GET Check remaining credits (available, frozen, total).
/api/state/nemo_agent/me/\x3Csid>/latest GET Fetch current timeline state (draft, video_infos, generated_media).
/api/render/proxy/lambda POST Start export. Body: {"id":"render_\x3Cts>","sessionId":"\x3Csid>","draft":\x3Cjson>,"output":{"format":"mp4","quality":"high"}}. Poll status every 30s.

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

Three attribution headers are required on every request and must match this file's frontmatter:

Header Value
X-Skill-Source editor-ai-generator
X-Skill-Version frontmatter version
X-Skill-Platform auto-detect: clawhub / cursor / unknown from install path

Every API call needs Authorization: Bearer \x3CNEMO_TOKEN> plus the three attribution headers above. If any header is missing, exports return 402.

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

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.

Translating GUI Instructions

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
  • "open" or "打开" → query session state to get the data
  • "drag/drop" or "拖拽" → send the edit command through SSE
  • "preview in timeline" → show a text summary of current tracks
  • "Export" or "导出" → run the export workflow

Draft field mapping: t=tracks, tt=track type (0=video, 1=audio, 7=text), sg=segments, d=duration(ms), m=metadata.

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

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "cut the pauses, add transitions, and generate a title card" — 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.

Common Workflows

Quick edit: Upload → "cut the pauses, add transitions, and generate a title card" → Download MP4. Takes 1-2 minutes 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.

Usage Guidance
This skill appears to do what it says — upload user video to a cloud API and return edited results — but you should be cautious before installing/using it. Things to consider: 1) It will call an external domain (mega-api-prod.nemovideo.ai) automatically when the skill is first opened and may obtain/store an anonymous token and session_id; if you prefer explicit consent, ask the maintainer to remove automatic connection. 2) The SKILL.md mentions writing/reading ~/.config/nemovideo/ (token storage) even though registry metadata didn't list config paths — verify whether sensitive tokens or session IDs are persisted to disk and where. 3) Uploaded videos will be sent to a third-party service — review privacy/terms for nemovideo.ai and avoid sending sensitive footage. 4) Confirm how long anonymous tokens live and whether they are revoked when you stop using the skill. 5) If you need stronger assurance, request the skill's source/homepage or prefer a skill with an auditable codebase. If you proceed, monitor what the skill stores (files or config entries) and when it makes outbound requests.
Capability Analysis
Type: OpenClaw Skill Name: editor-ai-generator Version: 1.0.0 The skill acts as a functional wrapper for a cloud-based AI video editing service (nemovideo.ai). It manages session state, file uploads, and rendering tasks via standard HTTP API calls and SSE streams. While it handles authentication tokens and accesses a specific config path (~/.config/nemovideo/), its behavior is transparently documented and strictly aligned with the stated purpose of video processing without evidence of malicious intent or data exfiltration.
Capability Assessment
Purpose & Capability
The skill's stated purpose (AI cloud video editing) aligns with the single required credential NEMO_TOKEN and the documented API endpoints. Minor inconsistency: the SKILL.md frontmatter declares a config path (~/.config/nemovideo/) and includes metadata fields not reflected in the registry summary (registry listed no required config paths). This mismatch should be resolved but does not by itself break purpose–capability alignment.
Instruction Scope
Instructions direct the agent to automatically obtain an anonymous token and create a session when the skill is first opened (network calls before explicit user upload), and to store session_id/token for subsequent use. That automatic, background connection is scope-creep relative to a purely on-demand editor and can cause network activity and token creation without explicit user consent. Otherwise the steps (uploading videos and calling render endpoints) stay within the editing purpose.
Install Mechanism
Instruction-only skill with no install spec or code files — lowest install risk. The scanner had no code to analyze.
Credentials
The only declared credential is NEMO_TOKEN (primaryEnv), which is appropriate for a cloud service. However, SKILL.md also lists a config path (~/.config/nemovideo/) in its frontmatter, which suggests the skill may persist tokens/config to disk even though the registry did not declare any config path. Confirm whether tokens or session IDs are written to disk and where.
Persistence & Privilege
always:false (good) and autonomous invocation is the default (expected). The issue is the explicit instruction to 'connect to the processing backend automatically' on first-open and to persist a session token; that gives the skill the ability to perform network operations immediately and to store tokens/sessions. This is a privacy/visibility concern even though it isn't an elevated platform privilege like always:true.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install editor-ai-generator
  3. After installation, invoke the skill by name or use /editor-ai-generator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of Editor AI Generator. - Instantly edit and generate 1080p videos from raw footage using simple prompts—no timeline editing required. - Automatic backend setup, including authentication and session management. - Upload, edit, preview, and export workflows fully integrated with cloud GPU processing. - Supports user-friendly commands for status, credits, uploading, and exporting. - Guides users with tips, expected file formats, size limits, and error handling.
Metadata
Slug editor-ai-generator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Editor Ai Generator?

Turn a 2-minute unedited screen recording into 1080p AI-edited videos just by typing what you need. Whether it's automatically editing raw footage into a pol... It is an AI Agent Skill for Claude Code / OpenClaw, with 43 downloads so far.

How do I install Editor Ai Generator?

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

Is Editor Ai Generator free?

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

Which platforms does Editor Ai Generator support?

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

Who created Editor Ai Generator?

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

💬 Comments