← Back to Skills Marketplace
whitejohnk-26

Daily Review Editor Free

by whitejohnk-26 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
117
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install daily-review-editor-free
Description
Skip the learning curve of professional editing software. Describe what you want — trim pauses, add intro title, and sync background music to my daily review...
README (SKILL.md)

Getting Started

Share your daily review footage and I'll get started on AI review editing. Or just tell me what you're thinking.

Try saying:

  • "edit my daily review footage"
  • "export 1080p MP4"
  • "trim pauses, add intro title, and"

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.

Daily Review Editor Free — Edit and Export Review Videos

Drop your daily review footage in the chat and tell me what you need. I'll handle the AI review editing on cloud GPUs — you don't need anything installed locally.

Here's a typical use: you send a a 3-minute daily vlog or review recording, ask for trim pauses, add intro title, and sync background music to my daily review clip, 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 — keep your review clips under 5 minutes for the fastest processing and best AI cut detection.

Matching Input to Actions

User prompts referencing daily review editor 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 daily-review-editor-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

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)

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "trim pauses, add intro title, and sync background music to my daily review clip" — 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 YouTube, TikTok, and social platforms.

Common Workflows

Quick edit: Upload → "trim pauses, add intro title, and sync background music to my daily review clip" → 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 do what it says: it uploads your video to a nemo-video backend (mega-api-prod.nemovideo.ai) for cloud GPU editing and requires a NEMO_TOKEN (or it will obtain a short-lived anonymous token). Before installing, consider: 1) Privacy: uploading videos sends their contents to the external service—do not upload sensitive footage unless you trust the service and its privacy policy. 2) Token choice: provide a service token only if you intend the skill to act on your account; anonymous tokens are possible but still send data. 3) Metadata mismatch: SKILL.md references a config path (~/.config/nemovideo/) though the registry shows none—ask the publisher for clarification if this concerns you. 4) Provenance: the skill has no homepage and an unknown owner; if you need stronger assurance, prefer a skill from a known publisher or verify the API domain and privacy policy first. If you proceed, test first with non-sensitive sample videos.
Capability Analysis
Type: OpenClaw Skill Name: daily-review-editor-free Version: 1.0.0 The skill is a cloud-based video editing assistant that interfaces with the nemovideo.ai API. It manages session tokens, handles video uploads, and processes editing commands via SSE and REST endpoints (e.g., mega-api-prod.nemovideo.ai). All behaviors, including the use of the NEMO_TOKEN environment variable and the ~/.config/nemovideo/ path, are consistent with the stated purpose of providing AI-driven video rendering and do not show signs of malicious intent or unauthorized data exfiltration.
Capability Assessment
Purpose & Capability
The skill is a cloud video editor and only requests NEMO_TOKEN which matches that purpose. Minor incoherence: registry metadata lists no required config paths, but the SKILL.md frontmatter indicates a config path (~/.config/nemovideo/) — this is likely a documentation/metadata mismatch rather than a security issue.
Instruction Scope
Runtime instructions are narrowly scoped to creating/using a session, uploading media, polling state, and exporting renders via the nemovideo API. They do instruct network calls to mega-api-prod.nemovideo.ai and to include attribution headers; the agent may need to read NEMO_TOKEN from the environment and possibly derive an install path string for X-Skill-Platform detection.
Install Mechanism
No install spec or packaged code — instruction-only. Nothing is downloaded or written to disk by an installer, which lowers risk.
Credentials
Only a single credential (NEMO_TOKEN) is required and is appropriate for an API-backed editor. The fallback anonymous-token flow is documented (generates a UUID and POSTs to the service). No unrelated secrets or multiple credentials are requested.
Persistence & Privilege
always:false and normal autonomous invocation are used. The skill does not request any system-wide config changes or cross-skill credentials.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install daily-review-editor-free
  3. After installation, invoke the skill by name or use /daily-review-editor-free
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Daily Review Editor Free v1.0.0 — Initial Release - Instantly edit and export short review videos with easy prompts—no editing skills required. - Supports uploads of MP4, MOV, AVI, and WebM videos up to 500MB. - Features AI-powered tools: trim pauses, add titles, sync background music, and more in minutes. - Handles authentication via environment token or anonymous free credits system. - Includes simple commands for exporting videos, checking credits, uploading files, and tracking edit status. - Cloud GPU processing with 1080p export; optimized for review and daily vlog creators.
Metadata
Slug daily-review-editor-free
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Daily Review Editor Free?

Skip the learning curve of professional editing software. Describe what you want — trim pauses, add intro title, and sync background music to my daily review... It is an AI Agent Skill for Claude Code / OpenClaw, with 117 downloads so far.

How do I install Daily Review Editor Free?

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

Is Daily Review Editor Free free?

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

Which platforms does Daily Review Editor Free support?

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

Who created Daily Review Editor Free?

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

💬 Comments