npx skills add ...
npx skills add samuraigpt/generative-media-skills --skill muapi-ugc-video-factory
Turn a person photo + a product photo + an optional script into a vertical 9:16 UGC-style video ad. Generates a lifestyle hero image (Nano-Banana Pro Edit), then animates it with native audio using Seedance 2.0 VIP image-to-video.
npx skills add samuraigpt/generative-media-skills --skill muapi-ugc-video-factory
Turn a person photo + product photo (+ optional script & environment) into a vertical 9:16 UGC-style video ad with native dialogue audio.
A three-stage pipeline:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
person | image_url | yes | — | Photo of the person who will appear in the ad (face + upper body works best). |
product | image_url | yes | — | Clear photo of the product (preferably on neutral background, logo/text legible). |
script | text | no | Okay… first of all, ship happens. And this hat is honestly my favorite. It also comes in navy and black, so you can pick your vibe. | The exact line the on-screen person will say (kept short — 1–2 sentences fit 10s comfortably). |
environment | text | no | study room, laptop in front of it | Scene / context where the person is using the product (e.g. "bathroom mirror, morning routine", "coffee shop window seat"). |
If person or product is missing, ask the user to upload them (muapi upload file <path>) or offer to generate placeholders before continuing.
Run the three steps sequentially — each step's output feeds the next.
Use a GPT model (gpt-5.1 or whichever chat model is available to the executing agent) with temperature 0 and max ~200 tokens to produce the hero-image prompt.
System prompt: You are a helpful assistant.
User prompt (substitute {{person}}, {{product}}, {{environment}}):
Capture the GPT response as {{step1_prompt}}.
Submit a muapi image edit call against the nano-banana-pro-edit model:
image_urls): [ {{person}}, {{product}} ] — order matters; person first.{{step1_prompt}} from Step 1.9:1611KjpegCapture the resulting image URL as {{hero_image}}. Briefly show it to the user for approval before kicking off the video step.
Submit a muapi video from-image call against seedance-2-vip-image-to-video (or the -fast variant if the executing agent wants lower latency).
{{hero_image}} from Step 2.9:1610 seconds.true (native dialogue).0.5blur, distort, low quality{{script}}):Poll the result with muapi predict wait <request_id> and download to the user's outputs directory.
seedance-2-vip-image-to-video-fast.{{hero_image}} variations in Step 2 and animate each independently — Seedance VIP does not multi-image i2v at 9:16 + audio.ugc video factory, ugc video ad, person plus product video, talking product ad, ugc reel, lifestyle product video, vertical ugc video
muapi CLI commands. Run muapi auth configure first if MUAPI_API_KEY is unset.muapi upload file <path> --output-json --jq '.url'.{{input_name}} placeholders with the user's actual inputs before issuing each call.muapi CLI does not yet alias nano-banana-pro-edit or seedance-2-vip-image-to-video, fall back to the raw API: curl -X POST https://api.muapi.ai/api/v1/<endpoint> -H "x-api-key: $MUAPI_API_KEY" -H 'content-type: application/json' -d '{...}', then poll with muapi predict wait <request_id>.