← 返回 Skills 市场
mhogan2013-9

Free Youtube Video

作者 mhogan2013-9 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
85
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install free-youtube-video
功能描述
Turn a 2-minute screen recording or raw clip into 1080p YouTube-ready videos just by typing what you need. Whether it's creating free YouTube videos without...
使用说明 (SKILL.md)

Getting Started

Share your video clips and I'll get started on AI video creation. Or just tell me what you're thinking.

Try saying:

  • "create my video clips"
  • "export 1080p MP4"
  • "edit this into a YouTube-ready video"

Quick Start Setup

This skill connects to a cloud processing backend. On first use, set up the connection automatically and let the user know ("Connecting...").

Token check: Look for NEMO_TOKEN in the environment. If found, skip to session creation. Otherwise:

  • Generate a UUID as client identifier
  • POST https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with X-Client-Id header
  • Extract data.token from the response — this is your NEMO_TOKEN (100 free credits, 7-day expiry)

Session: POST https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer auth and body {"task_name":"project"}. Keep the returned session_id for all operations.

Let the user know with a brief "Ready!" when setup is complete. Don't expose tokens or raw API output.

Free YouTube Video — Create and Export YouTube Videos

Send me your video 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 a 2-minute screen recording or raw clip, type "edit this into a YouTube-ready video with intro, cuts, and captions", and you'll get a 1080p MP4 back in roughly 1-2 minutes. All rendering happens server-side.

Worth noting: shorter clips under 3 minutes process significantly faster and use fewer credits.

Matching Input to Actions

User prompts referencing free youtube 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.

Headers are derived from this file's YAML frontmatter. X-Skill-Source is free-youtube-video, 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).

Include Authorization: Bearer \x3CNEMO_TOKEN> and all attribution headers on every request — omitting them triggers a 402 on export.

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.

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)

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 "edit this into a YouTube-ready video with intro, cuts, and captions" — 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 and all devices.

Common Workflows

Quick edit: Upload → "edit this into a YouTube-ready video with intro, cuts, and captions" → 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.

安全使用建议
This skill behaves like a normal cloud-video-editor: it will read a NEMO_TOKEN environment variable (or request an anonymous token from https://mega-api-prod.nemovideo.ai), upload video files you provide, and poll the service for render status and a download URL. Before installing/using: 1) Confirm you trust the endpoint mega-api-prod.nemovideo.ai and its privacy terms (you're uploading media to that service). 2) Be aware the skill may probe certain home paths (~/.clawhub, ~/.cursor/skills/, and the frontmatter mentions ~/.config/nemovideo/) to set headers — it doesn't need to modify files, but it may check for those paths; avoid giving it access to sensitive directories. 3) If you care about limiting access, set a scoped or anonymous token (rather than a long-lived secret) and don't export sensitive content. 4) Because this is instruction-only, it won't install binaries on disk, but it will make network calls and store session IDs in-memory. If you want to be safer, verify the service's website/policy and create a dedicated token/account just for this skill.
功能分析
Type: OpenClaw Skill Name: free-youtube-video Version: 1.0.0 The skill bundle facilitates an integration with a cloud-based video editing service (nemovideo.ai). It provides clear instructions for the AI agent to manage authentication via anonymous tokens, handle file uploads, and process video editing requests through a defined API (mega-api-prod.nemovideo.ai). While it includes logic for environment detection and automated token acquisition, these actions are consistent with the stated purpose of providing a 'free' video creation service and do not exhibit signs of data exfiltration, malicious execution, or harmful prompt injection.
能力评估
Purpose & Capability
The skill claims to perform cloud video editing and the SKILL.md describes API endpoints, session creation, uploads, SSE streams, and exports — all appropriate for that purpose. Requesting a single service token (NEMO_TOKEN) is proportionate to a cloud backend.
Instruction Scope
Instructions ask the agent to read NEMO_TOKEN from the environment (expected) and to upload user-provided video files (expected). They also describe detecting install paths (~/.clawhub, ~/.cursor/skills/) to set an X-Skill-Platform header and reference a config path in the frontmatter (~/.config/nemovideo/). Detecting install paths or config dirs is not necessary for core video processing and is an extra file-system check the user should be aware of.
Install Mechanism
No install step or external packages are specified (instruction-only). That minimizes disk-write risk; the skill solely makes network calls to the described API.
Credentials
Only NEMO_TOKEN is declared as required (primary credential), which matches the described API usage. The SKILL.md also documents how to acquire an anonymous NEMO_TOKEN by POSTing to the service if none is present — this behavior is reasonable but means the skill will make network calls to mint a token on first use. The frontmatter's configPaths entry conflicts with the registry's 'no required config paths' and should be clarified.
Persistence & Privilege
The skill is not marked always:true and does not request system-wide persistence. It instructs keeping session_id in-process for operations, which is standard. There are no instructions to alter other skills or global agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install free-youtube-video
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /free-youtube-video 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Free YouTube Video Skill 1.0.0 - Launches a cloud-powered tool to create and export YouTube-ready videos from short clips, no editing software required. - Simple setup: connects automatically to cloud backend and handles session/token management for you. - Accepts video uploads and natural-language prompts for tasks like editing, adding audio/text overlays, or exporting in 1080p MP4. - Streamlined workflow: 1–2 minutes from upload to download for short clips; no timeline dragging or export settings needed. - Supports multiple formats and common actions via smart prompt routing (export, upload, credits, status, etc.). - Handles errors gracefully, with user-friendly messages and suggestions for unsupported files, large uploads, or credit issues.
元数据
Slug free-youtube-video
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Free Youtube Video 是什么?

Turn a 2-minute screen recording or raw clip into 1080p YouTube-ready videos just by typing what you need. Whether it's creating free YouTube videos without... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。

如何安装 Free Youtube Video?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install free-youtube-video」即可一键安装,无需额外配置。

Free Youtube Video 是免费的吗?

是的,Free Youtube Video 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Free Youtube Video 支持哪些平台?

Free Youtube Video 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Free Youtube Video?

由 mhogan2013-9(@mhogan2013-9)开发并维护,当前版本 v1.0.0。

💬 留言讨论