← Back to Skills Marketplace
susan4731-wilfordf

Ai Video Editor Instagram Reels

by susan4731-wilfordf · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
83
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-video-editor-instagram-reels
Description
Skip the learning curve of professional editing software. Describe what you want — trim the clip, add trending transitions, and overlay text captions for Ins...
README (SKILL.md)

Getting Started

Send me your raw video clips and I'll handle the AI reel editing. Or just describe what you're after.

Try saying:

  • "edit a 60-second vertical phone recording into a 1080p MP4"
  • "trim the clip, add trending transitions, and overlay text captions for Instagram Reels"
  • "editing short vertical videos for Instagram Reels for Instagram creators"

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.

AI Video Editor for Instagram Reels — Edit and Export Reels Videos

Send me your raw video clips and describe the result you want. The AI reel editing runs on remote GPU nodes — nothing to install on your machine.

A quick example: upload a 60-second vertical phone recording, type "trim the clip, add trending transitions, and overlay text captions for Instagram Reels", and you'll get a 1080p MP4 back in roughly 30-60 seconds. All rendering happens server-side.

Worth noting: vertical 9:16 video works natively — no cropping needed for Reels.

Matching Input to Actions

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

All calls go to https://mega-api-prod.nemovideo.ai. The main endpoints:

  1. SessionPOST /api/tasks/me/with-session/nemo_agent with {"task_name":"project","language":"\x3Clang>"}. Gives you a session_id.
  2. Chat (SSE)POST /run_sse with session_id and your message in new_message.parts[0].text. Set Accept: text/event-stream. Up to 15 min.
  3. UploadPOST /api/upload-video/nemo_agent/me/\x3Csid> — multipart file or JSON with URLs.
  4. CreditsGET /api/credits/balance/simple — returns available, frozen, total.
  5. StateGET /api/state/nemo_agent/me/\x3Csid>/latest — current draft and media info.
  6. ExportPOST /api/render/proxy/lambda with render ID and draft JSON. Poll GET /api/render/proxy/lambda/\x3Cid> every 30s for completed status and download URL.

Formats: 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: ai-video-editor-instagram-reels
  • X-Skill-Version: from frontmatter version
  • X-Skill-Platform: detect from install path (~/.clawhub/clawhub, ~/.cursor/skills/cursor, else unknown)

Every API call needs Authorization: Bearer \x3CNEMO_TOKEN> plus the three attribution headers above. If any header is missing, exports return 402.

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)

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

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.

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

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "trim the clip, add trending transitions, and overlay text captions for Instagram Reels" — concrete instructions get better results.

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

Export as MP4 with H.264 codec for best Instagram upload compatibility.

Common Workflows

Quick edit: Upload → "trim the clip, add trending transitions, and overlay text captions for Instagram Reels" → Download MP4. Takes 30-60 seconds 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 user media to a remote rendering API and requires a single NEMO_TOKEN. Before installing/using it, consider: (1) You will be sending video/audio files to mega-api-prod.nemovideo.ai — don't upload sensitive content. (2) Confirm you trust the service (no homepage/source provided here). (3) The skill may read its own SKILL.md frontmatter and detect install paths for attribution headers; ensure it is not instructed to read other local files. (4) If you allow anonymous token generation, that token has limited lifetime/credits; revoke or stop usage when done. (5) Ask the publisher to clarify the configPath discrepancy (~/.config/nemovideo/) and provide a source/homepage for reputation checks.
Capability Analysis
Type: OpenClaw Skill Name: ai-video-editor-instagram-reels Version: 1.0.0 The skill bundle provides a legitimate interface for an AI video editing service hosted at mega-api-prod.nemovideo.ai. It includes standard procedures for session management, file uploads, and asynchronous video rendering. The instructions in SKILL.md are focused on translating API responses and managing the video editing workflow, with no evidence of malicious intent, data exfiltration, or unauthorized system access.
Capability Assessment
Purpose & Capability
The name/description (AI Reel editor) match the declared runtime behavior: uploading media and calling a remote nemovideo API. Requesting a single service token (NEMO_TOKEN) is appropriate. Minor inconsistency: the registry summary listed no required config paths, but the SKILL.md metadata mentions ~/.config/nemovideo/ — this is plausibly related but should be reconciled.
Instruction Scope
The SKILL.md instructs the agent to upload user video/audio assets and to call several API endpoints on mega-api-prod.nemovideo.ai, create/refresh an anonymous token if none exists, and save a session_id. It also says to read this file's YAML frontmatter at runtime and detect the install path to set X-Skill-Platform headers — that requires reading local skill files/paths. Those actions are reasonable for attribution and session handling, but you should be aware the skill will transmit user media and metadata to a third-party service and may read its own skill file / install path for headers.
Install Mechanism
Instruction-only skill with no install spec or bundled code, so nothing is written to disk by an installer. This is the lowest-risk install model.
Credentials
Only one credential is required (NEMO_TOKEN), which is proportionate. The SKILL.md metadata references a config path (~/.config/nemovideo/) that was not listed in the registry's requirements — this may be harmless (local cache/config) but is an inconsistency to verify. No other unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true and uses ephemeral session tokens saved locally (session_id). It does not ask to modify other skills or system-wide settings. Autonomous invocation is allowed (platform default) but not combined with elevated privileges here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-video-editor-instagram-reels
  3. After installation, invoke the skill by name or use /ai-video-editor-instagram-reels
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
AI Video Editor for Instagram Reels — Initial Release - Instantly edit and export Instagram Reels clips using AI: trim, add transitions, overlay text captions — just describe what you want. - Supports uploads up to 500MB (MP4, MOV, AVI, WebM). - Automatic cloud-based video rendering and export; results delivered in 30-90 seconds. - Session-based workflow: connect, upload, edit, preview, and export Reels in a simple chat, no complex software needed. - Tracks credits and session state; handles errors with clear user guidance. - Ideal for creators seeking quick, polished Reels edits without a learning curve.
Metadata
Slug ai-video-editor-instagram-reels
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 Instagram Reels?

Skip the learning curve of professional editing software. Describe what you want — trim the clip, add trending transitions, and overlay text captions for Ins... It is an AI Agent Skill for Claude Code / OpenClaw, with 83 downloads so far.

How do I install Ai Video Editor Instagram Reels?

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

Is Ai Video Editor Instagram Reels free?

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

Which platforms does Ai Video Editor Instagram Reels support?

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

Who created Ai Video Editor Instagram Reels?

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

💬 Comments