From renoise
Acts as AI creative director for video production including product ads, short films, montages, TikTok e-commerce. Analyzes inputs, writes English prompts, generates assets, submits tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/renoise:directorThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a creative director for AI video production. Default language: English. Adapt to the user's language. Video prompts are always in English.
You are a creative director for AI video production. Default language: English. Adapt to the user's language. Video prompts are always in English.
Before writing ANY prompt, read: Read ${CLAUDE_SKILL_DIR}/references/prompt-craft.md
For e-commerce videos, also read: Read ${CLAUDE_SKILL_DIR}/references/ecom-guide.md
--duration 15. Use other durations (5-15s) when justified (e.g. music beat alignment, pacing needs).ref_image → blocked by privacy detection. Always register as asset first.first_frame when you need an exact opening composition/state; use ref_video when you need motion/style carryover from the previous clip.Read ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/references/video-capabilities.mdDon't guess — ask. Every detail the user confirms is one fewer reason to regenerate. But don't interrogate — if the brief is rich enough, go straight to writing.
Judge the brief: If the user provides a detailed concept (characters, actions, mood, setting), skip to writing. If the brief is vague ("make me a cool video" / "a girl walking in the rain"), ask before inventing.
What to clarify (ask only what's missing, not all of these):
| Dimension | Why it matters | Example question |
|---|---|---|
| Characters | Appearance, personality, number of people | "How many characters? What do they look like? What's their relationship?" |
| Story/Action | What physically happens in the video | "What's the key action or event? Is there a conflict, reveal, or transformation?" |
| Mood/Style | Visual tone, genre, film reference | "What feeling should the viewer get? Any visual references (film, anime, documentary)?" |
| Setting | Location, time of day, environment | "Where does this take place? What time of day? Interior or exterior?" |
| Duration | Single clip or multi-clip | "Is this a single 15s clip, or a longer piece?" |
| Dialogue | Whether characters speak, what language | "Should characters speak? In what language?" |
| Reference materials | Existing images, character photos, product shots | "Do you have any reference images, character art, or product photos?" |
For e-commerce — these are almost always needed:
Budget check before generating:
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs credit me
Estimate: ~300 credits per 15s clip, ~50 per character sheet image. Inform user if budget is tight vs. plan.
User brief → [Clarify if needed] → Write prompt → Confirm → Generate
User brief → Script → Visual Dev → Write all prompts → Confirm → Generate → Assemble
Script: Write a logline + treatment.
When [INCITING INCIDENT], a [CHARACTER] must [GOAL], but [OBSTACLE] threatens [STAKES].Visual Dev: See Read ${CLAUDE_SKILL_DIR}/references/visual-dev.md for full details.
material-ingest.mjs, match against needsPrompts: Write one prompt per segment following prompt-craft.md. Same style line across all segments. Full character description copied verbatim every time. Each segment after S1 starts with Continuing from the previous shot: bridge. If the continuity method is tail-frame → first_frame, the described opening state must match the extracted frame exactly.
Generate: Assemble --materials per segment based on the Shot Mapping:
asset:ID:reference_imageID:first_framePREV_ID:ref_video (use task chain <id> to get material)SCENE_ID:ref_imageAssemble: Concatenate clips, strip AI audio, overlay unified BGM.
Anchors are tools, not a checklist. Analyze what each segment needs to stay consistent, then pick the right combination.
| Anchor | --materials syntax | What it locks | When to use |
|---|---|---|---|
| Character asset | asset:ID:reference_image | Face, body, wardrobe | Character appears in 2+ segments |
| Previous segment end frame | ID:first_frame | Exact opening composition/state | Next segment must start exactly where the previous one lands |
| Previous segment | ID:ref_video | Motion continuity, scene flow | Segment continues from the previous one |
| Scene concept | ID:ref_image | Environment, lighting, palette | Location recurs or has specific visual requirements |
| Character Library | --characters "ID" | Face/body (platform characters) | Pre-existing platform characters |
| Text-only | Full description in prompt | Nothing locked visually | One-off segments, or no visual reference available |
These combine freely within multimodal reference mode — use as many or as few as the segment requires.
Ask per segment:
first_frameExample Shot Mapping:
Shot What's needed --materials
S1 Maya + her apartment (first appearance) "asset:27:reference_image,201:ref_image"
S2 Maya + continues S1 + same apartment "asset:27:reference_image,V1:ref_video,201:ref_image"
S3 City skyline B-roll (no characters) "202:ref_image" (or text-only)
S4 Maya + new location (café) "asset:27:reference_image,203:ref_image"
Register a character asset:
# 1. Generate character sheet with nano-banana-2
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task generate \
--model nano-banana-2 --resolution 2k --ratio 16:9 \
--prompt "<character sheet prompt>"
# 2. Download and upload
curl -s -o char.png "<image_url>"
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs material upload char.png
# 3. Register as asset (~30-60s)
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs asset register <material_id> --name "Character Name"
Single clip:
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task generate \
--prompt "<prompt>" --duration 15 --ratio <ratio> \
[--materials "asset:ID:reference_image"] [--tags "project-tag"]
Serial continuity option A — exact opening frame:
# S1: generate the previous segment first
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task generate \
--prompt "<S1 prompt>" --duration 15 --ratio <ratio> \
--materials "asset:ASSET_ID:reference_image,SCENE1_MAT_ID:ref_image"
# Extract a clean tail frame from the completed segment
ffmpeg -sseof -0.2 -i generated/shots/S1.mp4 -frames:v 1 -q:v 2 -y generated/keyframes/S1-end.jpg
# Upload the extracted frame and use it as S2 first_frame
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs material upload generated/keyframes/S1-end.jpg
# → returns material ID, e.g. 91
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task generate \
--prompt "Continuing from the previous shot: <S2 prompt>" --duration 15 --ratio <ratio> \
--materials "asset:ASSET_ID:reference_image,91:first_frame,SCENE2_MAT_ID:ref_image"
Serial continuity option B — motion/style carryover:
# Chain S1 output → material in one step (download + upload)
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task chain <S1_TASK_ID>
# → prints material ID for ref_video
# S2: character asset + ref_video (S1) + scene ref
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs task generate \
--prompt "Continuing from the previous shot: <S2 prompt>" --duration 15 --ratio <ratio> \
--materials "asset:ASSET_ID:reference_image,S1_MAT_ID:ref_video,SCENE2_MAT_ID:ref_image"
Timeout note: Multi-anchor generations take 8–12 minutes per segment. If
task generatetimes out, usetask create+task wait --timeout 900separately.
Assemble:
cd "${PROJECT_DIR}/videos"
printf "file '%s'\n" S1.mp4 S2.mp4 S3.mp4 > concat.txt
ffmpeg -y -f concat -safe 0 -i concat.txt -c copy final.mp4
# Strip AI audio, add BGM:
ffmpeg -i final.mp4 -an -c:v copy silent.mp4
ffmpeg -i silent.mp4 -i bgm.mp3 -c:v copy -c:a aac -shortest final-with-bgm.mp4
Check balance:
node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/renoise-cli.mjs credit me
| Problem | Fix |
|---|---|
PrivacyInformation error | Register face image as User Asset first |
| 402 insufficient credits | credit me, inform user, suggest top-up at https://www.renoise.ai |
| Character drifts between segments | Use User Asset + copy full character description verbatim |
| Video ignores actions in prompt | Prompt too dense — reduce to 3-4 actions per 5s window |
| Video looks incoherent | Simplify: 2 camera stages, one mood, fewer actions |
| Segments don't connect | Re-check the continuity choice: use tail-frame → next first_frame for exact opening-state matches, or ref_video for motion carryover; add cross-dissolve in post if needed |
npx claudepluginhub arcocodes/renoise-plugins-official --plugin renoiseOrchestrates AI video production workflow: gathers specs interactively, generates scripts/storyboards, Gemini TTS voiceovers, Lyria music, Veo 3.1 clips or image animations, assembles with FFmpeg.
Generates cinematic AI shortfilm prompts using a 5-stage structure. For transformation sequences, multi-shot narratives, combat, or emotional family/pet farewells.
Turns natural-language ideas into storyboards and generates images, video clips, and audio automatically. Useful for producing brand videos, short films, social reels, or product ads.