← Back to Skills Marketplace
peand-rover

Ai Video Editor Kya Hai

by peandrover adam · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
71
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-video-editor-kya-hai
Description
Get polished edited clips ready to post, without touching a single slider. Upload your raw video footage (MP4, MOV, AVI, WebM, up to 500MB), say something li...
README (SKILL.md)

Getting Started

Got raw video footage to work with? Send it over and tell me what you need — I'll take care of the AI video editing.

Try saying:

  • "edit a 2-minute raw phone recording into a 1080p MP4"
  • "trim unnecessary parts, add transitions, and export a clean video"
  • "automatically editing raw footage into a ready-to-share video for Hindi-speaking content creators"

Quick Start Setup

This skill connects to a cloud processing backend. On first use, set up the connection automatically and let the user know ("Connecting...").

Token check: Look for NEMO_TOKEN in the environment. If found, skip to session creation. Otherwise:

  • Generate a UUID as client identifier
  • POST https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with X-Client-Id header
  • Extract data.token from the response — this is your NEMO_TOKEN (100 free credits, 7-day expiry)

Session: POST https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer auth and body {"task_name":"project"}. Keep the returned session_id for all operations.

Let the user know with a brief "Ready!" when setup is complete. Don't expose tokens or raw API output.

AI Video Editor Kya Hai — Edit and Export Videos Automatically

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 raw phone recording, ask for trim unnecessary parts, add transitions, and export a clean video, 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 60 seconds process significantly faster and give cleaner AI results.

Matching Input to Actions

User prompts referencing ai video editor kya hai, 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 ai-video-editor-kya-hai, 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.

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

Common Workflows

Quick edit: Upload → "trim unnecessary parts, add transitions, and export a clean video" → 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.

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "trim unnecessary parts, add transitions, and export a clean video" — 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 social media platforms.

Usage Guidance
This skill appears to do what it says (upload your footage to a cloud backend and return edited videos), but review these points before installing or using it: - Privacy: Using the skill will upload your raw video to https://mega-api-prod.nemovideo.ai. Do not send sensitive or private footage unless you trust that domain and have checked its privacy/retention policies. - Token behavior: The registry declares NEMO_TOKEN as required, but the SKILL.md includes a flow to request an anonymous token if none is present. Decide whether you want to pre-provision your own NEMO_TOKEN (so you control the credential) or allow the skill to obtain an anonymous token automatically. - Local reads: The skill may inspect local install/config paths (e.g., ~/.config/nemovideo/, ~/.clawhub/, ~/.cursor/skills/) to build attribution headers. If you are uncomfortable with local path inspection, avoid installing the skill or run it in a confined environment. - Inconsistencies: The metadata you were shown and the SKILL.md frontmatter disagree about required config paths — ask the publisher to clarify whether the skill requires access to local config files and whether the token must be pre-configured. If you want to proceed: (1) verify the service domain and its policies; (2) consider creating and supplying your own NEMO_TOKEN so you control that credential; (3) avoid uploading sensitive media until you confirm how data is handled. If you need stronger assurance, request the publisher to provide an installable package or privacy statement and clarify the metadata mismatch.
Capability Analysis
Type: OpenClaw Skill Name: ai-video-editor-kya-hai Version: 1.0.0 The skill bundle provides a legitimate integration for an AI video editing service (nemovideo.ai). The SKILL.md file contains detailed instructions for the agent to manage authentication via tokens, handle file uploads, and interact with a cloud-based rendering API. It includes security-conscious instructions such as not exposing tokens to the user and provides clear error handling and workflow logic consistent with its stated purpose. No indicators of data exfiltration, malicious execution, or harmful prompt injection were found.
Capability Assessment
Purpose & Capability
Name/description align with cloud video editing and the single declared credential (NEMO_TOKEN) is appropriate for a cloud API. However, the SKILL.md frontmatter declares a config path (~/.config/nemovideo/) while the registry metadata provided to you earlier said no required config paths — that's an inconsistency. Also the skill's runtime will auto-generate an anonymous NEMO_TOKEN if none exists, which conflicts with the registry-level "required env var" declaration that suggests the token must already be supplied.
Instruction Scope
Instructions explicitly instruct the agent to POST video files and session messages to mega-api-prod.nemovideo.ai, create sessions, poll render status, and upload user files. These actions are coherent with the skill's purpose, but the skill also instructs the agent to derive attribution headers from local install paths and to check (and possibly use) ~/.config/nemovideo/. That means the agent may read local paths/environment to assemble headers. The token auto-provision flow (POST to an anonymous-token endpoint) is also in the instructions — the skill will obtain and use a bearer token if none is present. These behaviors are significant because they cause user data (video) and runtime tokens to be transmitted to an external service; not inappropriate for the purpose but important to be aware of.
Install Mechanism
No install spec and no code files (instruction-only). This minimizes on-disk risk because nothing new is installed or executed locally by the skill itself.
Credentials
Only one credential (NEMO_TOKEN) is declared as primary, which is proportionate for a cloud API. However, the SKILL.md indicates it can generate an anonymous token at runtime if none is present, and the frontmatter references a local config path. The registry summary you were given omitted the config path — this mismatch should be clarified. The skill does not request other unrelated credentials, which is good.
Persistence & Privilege
always is false and there is no install-time persistence or modification of other skills. The skill requests session-state retention for its own operations (keeping a session_id) which is normal for a cloud workflow. Autonomous invocation is allowed (platform default) — combine this with the fact the skill will upload files to an external host when used.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-video-editor-kya-hai
  3. After installation, invoke the skill by name or use /ai-video-editor-kya-hai
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
AI Video Editor Kya Hai — Initial Release - Launches a fully automated AI video editor for Hindi-speaking creators; upload raw footage and describe your desired edits to get instant results. - Simple onboarding with automatic cloud setup and 100 free credits for new users. - Supports uploads up to 500MB in various formats (MP4, MOV, AVI, WebM) and delivers 1080p MP4 exports. - Provides cloud-based editing, video export, credits/balance checking, and session state tracking with clear command mapping. - Includes error handling, session management, and concise process notifications for user clarity and reliability.
Metadata
Slug ai-video-editor-kya-hai
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Ai Video Editor Kya Hai?

Get polished edited clips ready to post, without touching a single slider. Upload your raw video footage (MP4, MOV, AVI, WebM, up to 500MB), say something li... It is an AI Agent Skill for Claude Code / OpenClaw, with 71 downloads so far.

How do I install Ai Video Editor Kya Hai?

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

Is Ai Video Editor Kya Hai free?

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

Which platforms does Ai Video Editor Kya Hai support?

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

Who created Ai Video Editor Kya Hai?

It is built and maintained by peandrover adam (@peand-rover); the current version is v1.0.0.

💬 Comments