← Back to Skills Marketplace
mhogan2013-9

Browser Nemo Video

by mhogan2013-9 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
31
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install browser-nemo-video
Description
Turn a 2-minute MP4 recorded on a laptop into 1080p edited MP4 clips just by typing what you need. Whether it's editing and exporting videos directly in the...
README (SKILL.md)

Getting Started

Ready when you are. Drop your video clips here or describe what you want to make.

Try saying:

  • "edit a 2-minute MP4 recorded on a laptop into a 1080p MP4"
  • "trim the clip, add text overlays, and export as MP4"
  • "editing and exporting videos directly in the browser without installing software for content creators and marketers"

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.

Browser Nemo Video — Edit and Export Videos Online

This tool takes your video clips and runs browser-based video editing through a cloud rendering pipeline. You upload, describe what you want, and download the result.

Say you have a 2-minute MP4 recorded on a laptop and want to trim the clip, add text overlays, and export as MP4 — the backend processes it in about 1-2 minutes and hands you a 1080p MP4.

Tip: shorter clips under 3 minutes process significantly faster in the browser editor.

Matching Input to Actions

User prompts referencing browser nemo video, 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.

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

  • X-Skill-Source: browser-nemo-video
  • X-Skill-Version: from frontmatter version
  • X-Skill-Platform: detect from install path (~/.clawhub/clawhub, ~/.cursor/skills/cursor, else 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.

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.

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

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 "trim the clip, add text overlays, and export as MP4" — concrete instructions get better results.

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

Export as MP4 for widest compatibility across platforms and devices.

Common Workflows

Quick edit: Upload → "trim the clip, add text overlays, and export as 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 looks coherent for online video editing. Before installing, make sure you are comfortable with Nemo’s backend receiving your uploaded media, prompts, platform attribution headers, and token-backed session information. Avoid using it for highly sensitive videos unless you trust the provider’s handling and retention practices.
Capability Analysis
Type: OpenClaw Skill Name: browser-nemo-video Version: 1.0.0 The skill is a legitimate integration for a cloud-based video editing service hosted at mega-api-prod.nemovideo.ai. It automates session management, file uploads, and rendering tasks as described in SKILL.md. There are no indicators of malicious intent, data exfiltration, or unauthorized system access; the behavior is strictly aligned with its stated purpose of video processing and uses standard API authentication patterns.
Capability Assessment
Purpose & Capability
The cloud upload and rendering behavior matches the stated video-editing purpose, but the user’s media and edit prompts leave the local environment.
Instruction Scope
The skill instructs the agent to connect to the backend automatically on first open and to translate backend events into API actions; this is disclosed and scoped to the Nemo workflow.
Install Mechanism
No install script, binaries, or code files are present; the artifact is instruction-only.
Credentials
Use of NEMO_TOKEN and Nemo API calls is proportionate for an online rendering service, with no evidence of unrelated local file or system access.
Persistence & Privilege
The skill stores a session_id for subsequent requests and may leave cloud render jobs orphaned if the tab closes, but no local persistence or privilege escalation is shown.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install browser-nemo-video
  3. After installation, invoke the skill by name or use /browser-nemo-video
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial public release of browser-nemo-video. - Instantly edit and export videos up to 2 minutes (MP4, MOV, etc.) directly in the browser — no software install needed. - Describe your desired result in plain language (e.g., "trim, add text overlay") and get a processed 1080p MP4 in 1–2 minutes. - Automatic backend session setup and free token generation (100 credits, 7-day validity) for first-time users. - Simple command mapping for uploading, editing, exporting, managing credits, and viewing session status. - Robust error handling with clear user guidance for authentication, credits, file types, and limits. - Supports a range of media formats for content creators and marketers seeking fast, timeline-free video editing.
Metadata
Slug browser-nemo-video
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Browser Nemo Video?

Turn a 2-minute MP4 recorded on a laptop into 1080p edited MP4 clips just by typing what you need. Whether it's editing and exporting videos directly in the... It is an AI Agent Skill for Claude Code / OpenClaw, with 31 downloads so far.

How do I install Browser Nemo Video?

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

Is Browser Nemo Video free?

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

Which platforms does Browser Nemo Video support?

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

Who created Browser Nemo Video?

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

💬 Comments