← Back to Skills Marketplace
dsewell-583h0

Ai Video Pro Free

by dsewell-583h0 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
91
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-video-pro-free
Description
Turn a 2-minute unedited screen recording into 1080p polished edited clips just by typing what you need. Whether it's editing and enhancing videos automatica...
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:

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

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.

AI Video Pro Free — Edit and Export Videos Free

This tool takes your raw video footage and runs AI video editing through a cloud rendering pipeline. You upload, describe what you want, and download the result.

Say you have a 2-minute unedited screen recording and want to trim the pauses, add background music, and export as 1080p MP4 — the backend processes it in about 1-2 minutes and hands you a 1080p MP4.

Tip: shorter clips under 60 seconds process significantly faster.

Matching Input to Actions

User prompts referencing ai video pro free, 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.

Headers are derived from this file's YAML frontmatter. X-Skill-Source is ai-video-pro-free, 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).

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

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 1080p 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.

Common Workflows

Quick edit: Upload → "trim the pauses, add background music, and export as 1080p MP4" → 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 straightforward cloud video editor, but there are a few things to check before installing: - Clarify the config-path inconsistency: SKILL.md's metadata references ~/.config/nemovideo/ while the registry metadata lists no required config paths. Ask the author where tokens and session data will be stored and whether the skill will write files under that path. - Token handling: the skill will auto-request an anonymous NEMO_TOKEN from mega-api-prod.nemovideo.ai if none is present. Confirm you trust that backend and its operator before allowing automatic token creation or persistent storage. If you prefer control, pre-set NEMO_TOKEN yourself instead of allowing auto-provisioning. - Privacy and data retention: uploading videos to an unknown backend can expose sensitive content. Confirm the provider's privacy policy / terms and whether uploaded footage is retained, inspected, or used for model training. - Attribution headers & environment detection: the skill inspects install paths to set X-Skill-Platform and sends X-Skill-Source headers. If you prefer not to leak environment details, ask the author to allow opt-out or to avoid adding install-path-derived headers. - No install code present: because this is instruction-only, there was nothing for static scanning. That makes runtime behavior (HTTP calls, token storage) the main surface to review — consider testing with non-sensitive sample clips and a disposable account/token first. If these questions are unanswered or you cannot verify the backend/operator, treat this skill as higher-risk and avoid granting it persistent tokens or writing permissions on your machine.
Capability Analysis
Type: OpenClaw Skill Name: ai-video-pro-free Version: 1.0.0 The skill 'ai-video-pro-free' is designed to provide an interface for an AI-powered video editing service. It contains detailed instructions for the agent to manage authentication, session state, file uploads, and video rendering via the backend at mega-api-prod.nemovideo.ai. The requested environment variable (NEMO_TOKEN) and network access are consistent with the stated purpose of a cloud-based video processing tool, and there is no evidence of malicious intent, data exfiltration, or prompt injection attacks.
Capability Assessment
Purpose & Capability
Name/description align with cloud video editing and the only declared credential (NEMO_TOKEN) is reasonable for an API-backed editor. However the SKILL.md frontmatter lists a config path (~/.config/nemovideo/) while the registry metadata earlier states no required config paths — this mismatch is an incoherence that should be resolved (is the skill expected to read/write that directory?).
Instruction Scope
Runtime instructions stay within video-upload, SSE, session management and exports. They do instruct the agent to: auto-generate an anonymous token if NEMO_TOKEN is missing, create/store a session_id, and detect install path to set X-Skill-Platform headers — all of which require reading/writing environment and filesystem state. The instructions do not ask the agent to read unrelated user files or unrelated credentials, but the install-path detection and implied token storage expand scope beyond simple API calls.
Install Mechanism
Instruction-only skill with no install spec or code files — lowest risk class for installation mechanism. There is no remote download instruction in the SKILL.md.
Credentials
The skill only declares a single credential (NEMO_TOKEN) which fits the use-case. However SKILL.md implies creating/storing anonymous tokens and references a config directory (frontmatter) that the registry did not declare. Automatic token acquisition and persistence (unclear where/how long tokens/sessions are stored) increases risk if tokens are written to disk or reused across contexts. Also the skill's source and backend domain (mega-api-prod.nemovideo.ai) are not documented elsewhere (no homepage), so it's unclear who controls the tokens and how they're protected.
Persistence & Privilege
Skill is not set to always:true and uses normal autonomous invocation. It asks to manage a session and tokens for its own backend but does not request system-wide privileges or modify other skills' configs per the provided instructions.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-video-pro-free
  3. After installation, invoke the skill by name or use /ai-video-pro-free
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
AI Video Pro Free v1.0.0 — Initial Release - Instantly edit and export videos up to 2 minutes using AI-powered cloud rendering, no paid software needed. - Upload raw footage and describe desired edits (e.g., trim, add background music, export as 1080p MP4). - Automatic session setup with free credits (no sign-in required). - Supports a wide variety of input formats: video, audio, and image files. - Simple command-based workflow — no need for timeline editing or export settings. - Quick export, with processed videos typically ready within 1–2 minutes.
Metadata
Slug ai-video-pro-free
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Ai Video Pro Free?

Turn a 2-minute unedited screen recording into 1080p polished edited clips just by typing what you need. Whether it's editing and enhancing videos automatica... It is an AI Agent Skill for Claude Code / OpenClaw, with 91 downloads so far.

How do I install Ai Video Pro Free?

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

Is Ai Video Pro Free free?

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

Which platforms does Ai Video Pro Free support?

Ai Video Pro Free is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Ai Video Pro Free?

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

💬 Comments