← Back to Skills Marketplace
susan4731-wilfordf

Maker Italiano

by susan4731-wilfordf · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
50
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install maker-italiano
Description
Get Italian-language videos ready to post, without touching a single slider. Upload your video clips or images (MP4, MOV, JPG, PNG, up to 500MB), say somethi...
README (SKILL.md)

Getting Started

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

Try saying:

  • "create my video clips or images"
  • "export 1080p MP4"
  • "crea un video promozionale in italiano"

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.

Maker Italiano — Create Italian-Language Videos Fast

Drop your video clips or images in the chat and tell me what you need. I'll handle the Italian video creation on cloud GPUs — you don't need anything installed locally.

Here's a typical use: you send a a 60-second product clip or brand photos, ask for crea un video promozionale in italiano con sottotitoli e musica di sottofondo, 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 — shorter clips under 2 minutes generate faster and give more accurate Italian voice sync.

Matching Input to Actions

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

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.

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 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

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "crea un video promozionale in italiano con sottotitoli e musica di sottofondo" — 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 across Italian social platforms like YouTube and Instagram.

Common Workflows

Quick edit: Upload → "crea un video promozionale in italiano con sottotitoli e musica di sottofondo" → 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 is coherent with its stated purpose: it uploads your media and interacts with mega-api-prod.nemovideo.ai to create and return videos. Before installing or invoking it, decide whether you want to give it a personal NEMO_TOKEN (which would let it act on your account and use any associated credits). If you prefer not to share an account token, let the skill obtain an anonymous token (it will do so automatically). Be aware that your uploaded media and project data will be sent to the external service (mega-api-prod.nemovideo.ai) — review that service's privacy/terms if this matters. There is no local install or extra system access requested by the skill.
Capability Analysis
Type: OpenClaw Skill Name: maker-italiano Version: 1.0.0 The skill provides instructions for an AI agent to interface with the nemovideo.ai cloud API for Italian-language video processing. It includes standard procedures for authentication (anonymous token generation via mega-api-prod.nemovideo.ai), file uploads, and session management. The behavior is consistent with the stated purpose of a video editing utility, and there is no evidence of data exfiltration, malicious execution, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description promise (cloud-based Italian-language video creation) matches the instructions: calls a video-processing backend, uploads media, creates sessions, and exports MP4s. The required env var NEMO_TOKEN and the optional config path ~/.config/nemovideo/ are relevant to that purpose and not excessive.
Instruction Scope
SKILL.md instructs the agent to read NEMO_TOKEN from the environment (or obtain an anonymous token via POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token), create a session, upload user media, and poll SSE/render endpoints. These actions are necessary for the described capability. Note: the skill will send user files and metadata to an external service (mega-api-prod.nemovideo.ai) and suggests detecting an install path to set an attribution header, which implies the agent may inspect its runtime/install path—this is reasonable but worth being aware of.
Install Mechanism
Instruction-only skill with no install spec and no files to write/execute. No third-party packages or downloads are requested in SKILL.md.
Credentials
Only NEMO_TOKEN is required (declared as primaryEnv) and an optional config path (~/.config/nemovideo/) is listed. This is proportional to a cloud service client. Users should understand that providing a personal NEMO_TOKEN grants the skill access to that account's credits and data; if absent the skill will obtain an anonymous token on the user's behalf (100 free credits, 7-day expiry).
Persistence & Privilege
Skill does not request always: true, does not modify other skills or system settings, and only keeps session state (session_id) needed for the video workflow. Autonomous invocation remains enabled by default (expected).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install maker-italiano
  3. After installation, invoke the skill by name or use /maker-italiano
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Maker Italiano — Initial Release - Create Italian-language videos quickly from clips or images with easy text prompts. - Automatic token and session setup for fast cloud-based processing. - Supports uploads of MP4, MOV, JPG, and PNG files up to 500MB. - Exports high-quality 1080p MP4 videos, ready for Italian social platforms. - Includes error handling, timeline summaries, credits checks, and status feedback. - Optimized for content creators and marketers needing fast, no-skill-required Italian video production.
Metadata
Slug maker-italiano
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Maker Italiano?

Get Italian-language videos ready to post, without touching a single slider. Upload your video clips or images (MP4, MOV, JPG, PNG, up to 500MB), say somethi... It is an AI Agent Skill for Claude Code / OpenClaw, with 50 downloads so far.

How do I install Maker Italiano?

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

Is Maker Italiano free?

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

Which platforms does Maker Italiano support?

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

Who created Maker Italiano?

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

💬 Comments