← Back to Skills Marketplace
dsewell-583h0

Editor Ai For Beginners

by dsewell-583h0 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
93
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install editor-ai-for-beginners
Description
edit raw video clips into edited MP4 videos with this editor-ai-for-beginners skill. Works with MP4, MOV, AVI, WebM files up to 500MB. beginners and first-ti...
README (SKILL.md)

Getting Started

Share your raw video clips and I'll get started on AI-assisted 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,"

Getting Connected

Before handling any user request, establish a connection to the backend API. Show a brief status like "Connecting...".

If NEMO_TOKEN is in the environment, use it directly and create a session. Otherwise, acquire a free starter token:

  • Generate a UUID as client identifier
  • POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with the X-Client-Id header
  • The response includes a token with 100 free credits valid for 7 days — use it as NEMO_TOKEN

Then create a session by POSTing to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer authorization and body {"task_name":"project","language":"en"}. The session_id in the response is needed for all following requests.

Tell the user you're ready. Keep the technical details out of the chat.

AI Editor for Beginners — Edit and Export Videos Easily

Drop your raw video clips in the chat and tell me what you need. I'll handle the AI-assisted 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 put text on screen, 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 faster and are easier to learn with.

Matching Input to Actions

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

Headers are derived from this file's YAML frontmatter. X-Skill-Source is editor-ai-for-beginners, X-Skill-Version comes from the version field, and X-Skill-Platform is detected from the install path (~/.clawhub/ = clawhub, ~/.cursor/skills/ = cursor, otherwise unknown).

All requests must include: Authorization: Bearer \x3CNEMO_TOKEN>, X-Skill-Source, X-Skill-Version, X-Skill-Platform. Missing attribution headers will cause export to fail with 402.

API base: https://mega-api-prod.nemovideo.ai

Create session: POST /api/tasks/me/with-session/nemo_agent — body {"task_name":"project","language":"\x3Clang>"} — returns task_id, session_id.

Send message (SSE): POST /run_sse — body {"app_name":"nemo_agent","user_id":"me","session_id":"\x3Csid>","new_message":{"parts":[{"text":"\x3Cmsg>"}]}} with Accept: text/event-stream. Max timeout: 15 minutes.

Upload: POST /api/upload-video/nemo_agent/me/\x3Csid> — file: multipart -F "files=@/path", or URL: {"urls":["\x3Curl>"],"source_type":"url"}

Credits: GET /api/credits/balance/simple — returns available, frozen, total

Session state: GET /api/state/nemo_agent/me/\x3Csid>/latest — key fields: data.state.draft, data.state.video_infos, data.state.generated_media

Export (free, no credits): POST /api/render/proxy/lambda — body {"id":"render_\x3Cts>","sessionId":"\x3Csid>","draft":\x3Cjson>,"output":{"format":"mp4","quality":"high"}}. Poll GET /api/render/proxy/lambda/\x3Cid> every 30s until status = completed. Download URL at output.url.

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

SSE Event Handling

Event Action
Text response Apply GUI translation (§4), present to user
Tool call/result Process internally, don't forward
heartbeat / empty data: Keep waiting. Every 2 min: "⏳ Still working..."
Stream closes Process final response

~30% of editing operations return no text in the SSE stream. When this happens: poll session state to verify the edit was applied, then summarize changes to the user.

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 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)

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

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 put text on screen" — 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.

Common Workflows

Quick edit: Upload → "trim the pauses, add background music, and put text on screen" → 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 be a thin client for a Nemo cloud video editing API and mostly coherent, but exercise caution before installing or using it with sensitive data. Specifically: (1) don't provide your NEMO_TOKEN unless you trust the backend — the skill will use it as a bearer token for all requests; (2) avoid uploading sensitive local files — the instructions include reading files from arbitrary paths (files=@/path), so prefer attaching files via the chat UI or testing with non-sensitive samples first; (3) verify the API domain (mega-api-prod.nemovideo.ai) and the service's privacy/data-retention policies if you plan to upload real content; (4) note the SKILL.md references local config paths and install-path detection — if you want to limit exposure, run the skill in a restricted environment or deny access to your filesystem; (5) if you don't have a NEMO_TOKEN, the skill will request an anonymous token from the remote API automatically — be aware that this still transmits metadata (X-Skill-* headers) to the provider. If these behaviors are acceptable, test with throwaway tokens and non-sensitive clips first. If you need more certainty, ask the skill author for a privacy/security policy and clarification about local filesystem access and what the attribution headers contain.
Capability Analysis
Type: OpenClaw Skill Name: editor-ai-for-beginners Version: 1.0.0 The skill bundle provides instructions for an AI agent to interface with a cloud-based video editing service (nemovideo.ai). It outlines standard API interactions including authentication via anonymous tokens, session management, file uploads, and polling for render status. The requested permissions (NEMO_TOKEN and ~/.config/nemovideo/) and data flows are consistent with the stated purpose of a video editing tool, and no indicators of malicious intent, data exfiltration, or unauthorized execution were found.
Capability Assessment
Purpose & Capability
Name/description match the actions in SKILL.md: it calls a remote Nemo video API and needs a NEMO_TOKEN. That is coherent. However the SKILL.md metadata references a config path (~/.config/nemovideo/) while the registry metadata lists no required config paths — minor inconsistency in declared vs. actual metadata.
Instruction Scope
The instructions direct the agent to create sessions, call SSE endpoints, and upload videos. Crucially, upload examples include multipart 'files=@/path' syntax and the doc tells the agent to detect install paths (e.g. ~/.clawhub/) to set X-Skill-Platform. That implies the agent may be expected to read arbitrary local filesystem paths rather than only using user-attached files; this is scope creep and a privacy/risk concern. The skill also instructs obtaining an anonymous token if none is present (POST to external API) which is expected but means network calls will be made automatically.
Install Mechanism
There is no install spec and no code files — instruction-only skill. That reduces risk compared with arbitrary downloaded code.
Credentials
Only one credential (NEMO_TOKEN) is declared as required, which is appropriate for a cloud-editing integration. The SKILL.md also documents a flow to obtain a short-lived anonymous token if NEMO_TOKEN is absent — reasonable but be aware that the skill will call the external auth endpoint and use that token for subsequent requests. The presence of metadata-reported configPaths (in SKILL.md) is not reflected in the registry and could imply the skill expects access to a local config directory.
Persistence & Privilege
always:false and no install or persistent permissions are requested. The skill does suggest detecting install/config paths, but it does not request to be always-enabled or to modify other skills; no elevated persistence is requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install editor-ai-for-beginners
  3. After installation, invoke the skill by name or use /editor-ai-for-beginners
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
AI Editor for Beginners — Version 1.0.0 - Initial release providing a beginner-friendly, AI-powered video editor for MP4, MOV, AVI, and WebM files up to 500MB. - Simple workflow: upload raw clips, give instructions (like trimming, adding music or text), and export 1080p MP4 videos. - Automatic backend API connection with token handling, session management, credit checks, and error handling. - Supports file upload, project state preview, balance check, and fast cloud GPU rendering (typically complete in 1–2 minutes). - User requests are mapped to actions via keywords and intent detection; most technical details are abstracted away for simplicity.
Metadata
Slug editor-ai-for-beginners
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Editor Ai For Beginners?

edit raw video clips into edited MP4 videos with this editor-ai-for-beginners skill. Works with MP4, MOV, AVI, WebM files up to 500MB. beginners and first-ti... It is an AI Agent Skill for Claude Code / OpenClaw, with 93 downloads so far.

How do I install Editor Ai For Beginners?

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

Is Editor Ai For Beginners free?

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

Which platforms does Editor Ai For Beginners support?

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

Who created Editor Ai For Beginners?

It is built and maintained by dsewell-583h0 (@dsewell-583h0); the current version is v1.0.0.

💬 Comments