← Back to Skills Marketplace
dsewell-583h0

Editor Highlights

by dsewell-583h0 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
40
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install editor-highlights
Description
extract raw video footage into compiled highlight reel with this skill. Works with MP4, MOV, AVI, WebM files up to 500MB. content creators, event videographe...
README (SKILL.md)

Getting Started

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

Try saying:

  • "extract my raw video footage"
  • "export 1080p MP4"
  • "pull the best moments and compile"

Automatic Setup

On first interaction, connect to the processing API before doing anything else. Show a brief status like "Setting things up...".

Token: If NEMO_TOKEN environment variable is already set, use it and skip to Session below.

Free token: Generate a UUID as client identifier, then POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with header X-Client-Id: \x3Cuuid>. The response field data.token becomes your NEMO_TOKEN (100 credits, 7-day expiry).

Session: POST to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer auth and body {"task_name":"project"}. Save session_id from the response.

Confirm to the user you're connected and ready. Don't print tokens or raw JSON.

Editor Highlights — Extract and Export Key Moments

Drop your raw video footage in the chat and tell me what you need. I'll handle the AI highlight extraction on cloud GPUs — you don't need anything installed locally.

Here's a typical use: you send a a 30-minute interview or event recording, ask for pull the best moments and compile them into a 2-minute highlight reel, 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 — the more distinct your best moments are in pacing or volume, the more accurately AI detects them.

Matching Input to Actions

User prompts referencing editor highlights, 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-highlights, 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

Common Workflows

Quick edit: Upload → "pull the best moments and compile them into a 2-minute highlight reel" → 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 "pull the best moments and compile them into a 2-minute highlight reel" — 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.

Usage Guidance
This skill appears to do what it says (upload video, run cloud GPU renders, return MP4s), but a few things to check before using it: - It requires a NEMO_TOKEN bearer token. Prefer using the anonymous-token flow the skill documents rather than supplying a long-lived secret in your environment. Do not reuse other sensitive tokens. - The SKILL.md references local install/config paths (~/.config/nemovideo/, ~/.clawhub/, ~/.cursor/skills/) and derives X-Skill-Platform from the agent's install path — that implies the agent may check filesystem locations to set headers. If you are uncomfortable with the skill inspecting your home directory/agent install paths, avoid installing it or run it with limited filesystem access. - Uploaded videos (and any metadata) will be sent to https://mega-api-prod.nemovideo.ai — review the service's privacy/security policies and understand how long files or rendered outputs are retained. - Because the skill can act autonomously, consider the scope of operations you allow it (uploads, exports). If you need stronger controls, only invoke it interactively and avoid storing your own global NEMO_TOKEN in an agent-wide environment variable. If you want, I can list concrete mitigations (example ephemeral token flow, sandboxing recommendations, or a checklist of questions to ask the service owner) before you proceed.
Capability Analysis
Type: OpenClaw Skill Name: editor-highlights Version: 1.0.0 The 'editor-highlights' skill (v1.0.0) is a video processing tool designed to extract highlights using the Nemo Video cloud API. The SKILL.md file provides detailed instructions for the agent to manage authentication via the NEMO_TOKEN environment variable or an anonymous token generation process, and outlines workflows for uploading video files and polling for render results from 'mega-api-prod.nemovideo.ai'. While the skill involves file uploads and external network communication, these actions are strictly aligned with its stated purpose of cloud-based video editing, and the instructions include security-conscious directives such as suppressing the output of raw tokens or JSON data.
Capability Assessment
Purpose & Capability
The name/description describe a cloud-based video highlight extractor and the SKILL.md instructs the agent to create jobs, upload videos, and retrieve rendered MP4s from a remote API. Asking for a single service token (NEMO_TOKEN) is proportionate to that purpose. No unrelated credentials or binaries are requested.
Instruction Scope
Most instructions stay within video upload, session creation, SSE streaming, and export flows. However the SKILL.md requires building headers that include X-Skill-Platform derived from the agent's install path and references a local config path (~/.config/nemovideo/). That implies the agent may be expected to inspect local filesystem locations to determine platform/install path — a minor scope creep beyond simply uploading user-provided video files. The doc also instructs using local file path uploads (multipart -F "files=@/path"), which requires local file access when uploading; that's expected for uploads but worth noting because the skill metadata and registry disagree about required config paths.
Install Mechanism
This is instruction-only with no install spec or code files, so nothing is written to disk by the skill itself. That minimizes install risk.
Credentials
Only one environment variable is required (NEMO_TOKEN) and it directly maps to the described API. The SKILL.md also documents a way to obtain an anonymous token via the external API, which reduces the need to supply a permanent secret. Still: granting a skill access to a bearer token for an external service is sensitive — the token allows the skill to create uploads and render jobs for the account tied to that token.
Persistence & Privilege
always:false and model invocation allowed (normal). The skill asks the agent to save session_id and reuse session tokens, which is expected for job tracking. There is no request to modify other skills or global agent settings. The only potential privilege concern is the header X-Skill-Platform derivation (requires knowledge of install path), which could allow the skill to probe for certain local paths; this is not an explicit privilege request but is implied by the instructions.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install editor-highlights
  3. After installation, invoke the skill by name or use /editor-highlights
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of Editor Highlights — Extract and Export Key Moments: - Enables AI-powered highlight extraction from raw video footage (MP4, MOV, AVI, WebM, up to 500MB). - Cloud-based processing generates 1080p MP4 highlight reels in 1–2 minutes. - Supports intuitive commands for extraction, export, credits check, and timeline previews. - Handles session setup, free token generation, uploads, exports, and error reporting automatically. - Designed for content creators, event videographers, and marketers needing quick highlight compilations from long recordings.
Metadata
Slug editor-highlights
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Editor Highlights?

extract raw video footage into compiled highlight reel with this skill. Works with MP4, MOV, AVI, WebM files up to 500MB. content creators, event videographe... It is an AI Agent Skill for Claude Code / OpenClaw, with 40 downloads so far.

How do I install Editor Highlights?

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

Is Editor Highlights free?

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

Which platforms does Editor Highlights support?

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

Who created Editor Highlights?

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

💬 Comments