← Back to Skills Marketplace
peand-rover

Maker Generator

by peandrover adam · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
50
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install maker-generator
Description
Skip the learning curve of professional editing software. Describe what you want — turn these images into a 30-second promo video with music and transitions...
README (SKILL.md)

Getting Started

Send me your images or clips and I'll handle the AI video creation. Or just describe what you're after.

Try saying:

  • "generate five product images and a logo file into a 1080p MP4"
  • "turn these images into a 30-second promo video with music and transitions"
  • "generating videos from images or raw clips without manual editing for marketers and content 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.

Maker Generator — Create Videos From Your Assets

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

A quick example: upload five product images and a logo file, type "turn these images into a 30-second promo video with music and transitions", and you'll get a 1080p MP4 back in roughly 1-2 minutes. All rendering happens server-side.

Worth noting: using fewer than ten images speeds up generation noticeably.

Matching Input to Actions

User prompts referencing maker generator, 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.

Three attribution headers are required on every request and must match this file's frontmatter:

Header Value
X-Skill-Source maker-generator
X-Skill-Version frontmatter version
X-Skill-Platform auto-detect: clawhub / cursor / unknown from install path

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)

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

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.

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 → "turn these images into a 30-second promo video with music and transitions" → 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 "turn these images into a 30-second promo video with music and transitions" — concrete instructions get better results.

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

Export as MP4 for widest compatibility.

Usage Guidance
This skill appears to do what it says (remote AI video rendering) and only asks for a single service token (NEMO_TOKEN). Before installing: 1) Verify the API domain (mega-api-prod.nemovideo.ai) is legitimate and that you trust the service operator; there is no homepage or publisher info in the registry. 2) Clarify storage behavior: ask where session_id and tokens are saved (the SKILL.md hints at ~/.config/nemovideo/ in frontmatter but the registry metadata omitted config paths). 3) Use an ephemeral/anonymous token if you don't want to store a long-lived credential, and avoid uploading sensitive or private videos unless you trust the service's privacy policy. 4) Confirm retention and deletion policies for uploaded media and rendered outputs. If you can't confirm provenance or storage details, treat tokens as sensitive and limit usage (or decline to install).
Capability Analysis
Type: OpenClaw Skill Name: maker-generator Version: 1.0.0 The maker-generator skill is a legitimate tool designed to interface with a cloud-based video generation service at mega-api-prod.nemovideo.ai. It handles session management, file uploads, and video rendering tasks as described in its documentation. The skill includes appropriate security instructions for the agent, such as not printing raw tokens, and its behavior (including the use of environment variables and configuration paths) is consistent with its stated purpose of providing AI-driven video editing capabilities.
Capability Assessment
Purpose & Capability
The skill's name and description (AI video generation from uploaded assets) align with the required credential (NEMO_TOKEN) and the documented APIs. However, the SKILL.md frontmatter lists a config path (~/.config/nemovideo/) that the registry metadata did not declare; the source is unknown and there is no homepage, which reduces provenance confidence.
Instruction Scope
Runtime instructions stay within the video-generation domain: obtain/use a NEMO_TOKEN (or request an anonymous one), create a session, upload media, stream SSE edits, and poll export status. They do not instruct reading unrelated system files or other env vars. The guidance does instruct saving session_id but does not specify where or how long it is retained. The frontmatter's configPaths hint at possible local config access (not explicitly described in the body), creating an ambiguity.
Install Mechanism
This is an instruction-only skill with no install spec and no code files—no binaries or archives are downloaded or written to disk by the skill itself, which is the lowest-risk install model.
Credentials
Only one credential (NEMO_TOKEN) is required, which is proportionate for a service that requires authentication. The anonymous-token flow is documented and reasonable for ephemeral usage. Caveat: the frontmatter's config path suggests the skill may read or write local configuration (e.g., to persist tokens/session state), but the registry metadata did not declare this—clarify where tokens/session_id are stored and whether the skill will write to ~/.config/nemovideo/.
Persistence & Privilege
The skill is not force-included (always:false) and uses normal autonomous invocation rules. It does ask to create and retain a session_id for job tracking, which is appropriate for long-running cloud render jobs; nothing in the spec attempts to alter other skills or system settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install maker-generator
  3. After installation, invoke the skill by name or use /maker-generator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Maker Generator 1.0.0 — Initial Release - Instantly generate marketing or promo videos from your own images and clips, with automatic music and transitions. - No editing skills needed: just describe your desired result and upload assets (MP4, MOV, JPG, PNG up to 500MB). - Fast cloud rendering returns high-quality video files in 1–2 minutes. - Automatic API setup with anonymous token support and session management. - Simple commands for uploading assets, exporting videos, viewing balance, and checking project state.
Metadata
Slug maker-generator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Maker Generator?

Skip the learning curve of professional editing software. Describe what you want — turn these images into a 30-second promo video with music and transitions... It is an AI Agent Skill for Claude Code / OpenClaw, with 50 downloads so far.

How do I install Maker Generator?

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

Is Maker Generator free?

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

Which platforms does Maker Generator support?

Maker Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Maker Generator?

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

💬 Comments