Claude-skill-registry tutopanda-documentary-producer
Coordinate Tutopanda CLI and MCP to generate, edit, inspect, and preview documentary videos (video-audio-music blueprint with FinalVideo export). Use when users ask for Tutopanda to build, edit, or review movies inside Claude Code.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/documentary-producer" ~/.claude/skills/majiayu000-claude-skill-registry-tutopanda-documentary-producer && rm -rf "$T"
manifest:
skills/data/documentary-producer/SKILL.mdsource content
Tutopanda Documentary Producer
Use this skill whenever a user wants Tutopanda to create or modify documentary-style videos, export an MP4, or preview results from within Claude Code.
Preconditions
binary is available on PATH. If not, stop and ask the user to install the published CLI manually.tutopanda- Tutopanda has been initialized (
). Confirm the config path ortutopanda init --rootFolder=<absolute-path>
before running any command.TUTOPANDA_CLI_CONFIG - Default blueprint is
because it emitsvideo-audio-music.yaml
(MP4) in addition to the timeline. Switch blueprints only if the user requests a different workflow.FinalVideo
Generation workflow
- Collect required inputs from the user:
,InquiryPrompt
,Duration
,NumOfSegments
,SegmentDuration
,VideoStyle
,AspectRatio
,Resolution
, plus optionalVoiceId
,Audience
,Language
,Emotion
. Do not fabricate values.MusicalStyle - Write an inputs YAML with those values at an absolute path the user approves.
- Run Tutopanda via MCP (preferred) or CLI:
- CLI example:
tutopanda query "<InquiryPrompt>" \ --inputs=/absolute/path/to/inputs.yaml \ --usingBlueprint=video-audio-music.yaml \ --concurrency=<workers-if-needed> \ --nonInteractive
- CLI example:
- Capture the
, plan path, and friendly view path from the output.movieId - If the user wants a preview, call
.tutopanda viewer:view --movieId=<movieId>
Editing workflow
- Require the existing
and an explicit inputs file path. Run:movieIdtutopanda edit \ --movieId=<movie-id> \ --inputs=/absolute/path/to/inputs.yaml \ --usingBlueprint=video-audio-music.yaml \ --concurrency=<workers-if-needed> \ --nonInteractive - Use
or--dryRun
only when the user asks for them. After the run, refresh the viewer.--upToLayer
Inspection and review
- For prompts/timelines, run
and summarize key findings.tutopanda inspect --movieId=<movie-id> --prompts --all - Keep outputs and artefact paths tied to the configured root; do not relocate them.
Failure handling
- If the CLI or config is missing, stop and ask the user to install or initialize Tutopanda rather than guessing paths or creating defaults.
- Avoid silently falling back to placeholder inputs—always confirm required fields before running.