AgentStack
SKILL verified MIT Self-run

App Demo Agent

skill-michaelboeding-skills-app-demo-agent · by michaelboeding

>

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-michaelboeding-skills-app-demo-agent

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of App Demo Agent? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

App Demo Producer

Turn raw screen recordings into polished app demo videos with AI-generated voiceover, device frames, and background music.

This is an orchestrator skill that combines:

  • Screen recording analysis (FFmpeg frame extraction + Claude vision)
  • Voiceover script generation (Claude)
  • Device framing (device-framer)
  • Voice synthesis (Gemini TTS / OpenAI TTS / ElevenLabs)
  • Background music (Lyria / Suno / Udio)
  • Final assembly (FFmpeg via media-utils)

Workflow

Step 1: Gather Requirements (REQUIRED)

⚠️ DO NOT skip this step. DO NOT start processing until you have ALL answers.

Use interactive questioning — ask ONE question at a time, wait for the response, then ask the next.

Question Flow

⚠️ Use the AskUserQuestion tool for each question below.

Q1: Screen Recording > "I'll turn that into a polished demo! First — where's the screen recording? > > (provide the file path, e.g., ~/Desktop/recording.mp4)"

Wait for response. Verify the file exists.

Q2: What does the app do? > "Give me a quick overview of what this app does and what the recording shows. > > (e.g., 'It's a task management app. The recording shows creating a task, setting a due date, and marking it complete.')"

Wait for response. This context dramatically improves the voiceover script.

Q3: Device Frame > "Should I wrap it in a device frame? > > - Yes — iPhone 16 Pro (default) > - Yes, specific device(I'll show you options) > - No — Keep as-is"

Wait for response. If they want a specific device, run --list-devices and let them pick.

Q3b: Device Color (if device frame selected) > "What color for the [device name]? > > (list the available colors for the selected device)"

Wait for response. Show the actual color options from the device registry.

Q3c: Background Color (if device frame selected) > "What background color for the video? > > - Dark (#0a0a0a) — cinematic, great for social media > - White (#ffffff) — clean, good for presentations/websites > - Transparent — for compositing (note: output will be WebM, not MP4) > - Custom — specify a hex color"

Wait for response. If transparent, set output format to WebM with alpha. If custom, validate the hex color.

Q4: Voiceover > "How should we handle the voiceover? > > - Generate — I'll analyze the recording and write a script that narrates what's on screen > - You provide — Give me the script text > - None — No voiceover"

Wait for response.

Q5: Voice Style (if voiceover enabled) > "What kind of voice? > > Tone: > - Professional / polished > - Friendly / conversational > - Energetic / excited > - Calm / reassuring > - Or describe your own tone > > Gender preference: > - Male > - Female > - No preference"

Wait for response.

Q6: Voice Selection (if voiceover enabled)

Based on the user's tone and gender preference, recommend a specific voice and let them confirm or pick another:

> "Based on your preferences, I'd recommend [voice name] ([provider]). Here are some options: > > | Voice | Provider | Tone | > |-------|----------|------| > | Kore | Gemini | Friendly, clear, female | > | Charon | Gemini | Professional, authoritative, male | > | Puck | Gemini | Upbeat, energetic, male | > | Aoede | Gemini | Breezy, warm, female | > | nova | OpenAI | Friendly, natural, female | > | onyx | OpenAI | Deep, professional, male | > > Want to go with [recommendation], or pick a different one?"

Wait for response.

Q7: Background Music > "Want background music? If so, what vibe? > > - Modern / minimal — clean, tech-forward > - Upbeat / positive — energetic, fun > - Corporate / professional — polished, confident > - Ambient / calm — soft, relaxed > - Custom — describe the vibe you want > - No music — voiceover only (or silent)"

Wait for response.

Q8: Output > "Where should I save the final video? > > (default: same directory as the input, with _demo suffix)"

Wait for response.

Quick Reference

| Question | Determines | |----------|------------| | Screen Recording | Input file | | App Overview | Context for voiceover script | | Device Frame | Whether to use device-framer and which device | | Device Color | Color variant for the selected device | | Background Color | Background behind the device frame | | Voiceover | Generate script vs user-provided vs none | | Voice Style | Tone and gender preference | | Voice Selection | Specific TTS voice and provider | | Background Music | Whether to generate music and what style | | Output | Where to save final video |


Step 2: Analyze the Screen Recording

Extract keyframes from the recording. Use scene detection to capture frames at actual screen transitions rather than fixed intervals — this gives you frames at the moments that matter.

python3 ${CLAUDE_PLUGIN_ROOT}/skills/app-demo-agent/scripts/extract_frames.py \
  INPUT_VIDEO \
  -o ~/demo_project/frames/ \
  --scene-detect \
  --timestamps

If scene detection doesn't find enough transitions (e.g., scrolling content), fall back to fixed intervals:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/app-demo-agent/scripts/extract_frames.py \
  INPUT_VIDEO \
  -o ~/demo_project/frames/ \
  --interval 2 \
  --max-frames 20 \
  --timestamps

Options: | Option | Default | Description | |--------|---------|-------------| | --scene-detect | off | Detect actual screen transitions instead of fixed intervals | | --scene-threshold | 0.3 | Scene sensitivity 0.0-1.0, lower = more sensitive | | --interval | 2 | Seconds between frame captures (fixed interval mode) | | --max-frames | 20 | Maximum number of frames to extract | | -o, --output | ./frames/ | Output directory for frames | | --timestamps | off | Also output a timestamps.json mapping |

This creates numbered PNG screenshots: frame_001.png, frame_002.png, etc. The timestamps.json maps each frame to its exact timestamp in the video.

Now read each frame image using the Read tool to understand the screen flow. Build a mental timeline:

0s  - App opens, home screen visible
2s  - User taps "New Task" button
4s  - Task creation form appears
6s  - User types task name
8s  - User sets due date
10s - User taps "Save"
12s - Task appears in list with checkmark

Use the user's app description (Q2) combined with what you see in the frames to understand the full flow.


Step 3: Write the Voiceover Script

⚠️ This is the most important step. The voiceover must match what's happening on screen at every moment. A generic script that doesn't align with the visuals will feel disconnected and unprofessional.

First, get the exact video duration:

ffprobe -v quiet -show_entries format=duration -of csv=p=0 INPUT_VIDEO

Then write a timed script that maps narration to the frame timeline you built in Step 2. Every line of the script should correspond to what's visible on screen at that moment.

Script Rules
  1. Content must match the screen — if the user is tapping a button at 4s, the narration at 4s should describe that action. Never narrate something that isn't visible.
  2. Fill the full video duration — the voiceover should naturally span the entire recording. Not too short (dead silence at the end), not too long (audio gets cut off). Aim for the TTS output to be within 2-3 seconds of the video length.
  3. Flow with transitions — when the screen transitions between views, use that moment for a brief pause or transitional phrase. Don't talk over a screen change.
  4. Be natural and conversational — not robotic marketing speak.
  5. Highlight key features — call out what makes the app special as those features appear on screen.
Write the script as a timed outline first

Map each line to the timestamp where it should be spoken:

[0-3s]   "Meet TaskFlow — the simplest way to stay on top of your day."
[3-6s]   "Tap the plus button to create a new task."
[6-10s]  "Give it a name... set a due date... and you're done."
[10-14s] "Your tasks show up right on your home screen, organized by priority."
[14-17s] "One tap to mark it complete."
[17-20s] "That's it — no clutter, no complexity. TaskFlow."
Then convert to a single block for TTS

Remove the timestamps and join into flowing text. Use punctuation to control pacing:

Meet TaskFlow — the simplest way to stay on top of your day.
Tap the plus button to create a new task.
Give it a name... set a due date... and you're done.
Your tasks show up right on your home screen, organized by priority.
One tap to mark it complete.
That's it — no clutter, no complexity. TaskFlow.
Pacing guide

| Video Duration | Target Word Count | Pace | |----------------|-------------------|------| | 15s | 30-40 words | Fast, punchy | | 30s | 60-80 words | Standard | | 45s | 90-120 words | Comfortable | | 60s | 120-150 words | Relaxed | | 90s+ | ~150 words/min | Natural conversational |

Tips:

  • Short sentences work better for TTS pacing
  • Periods create natural pauses (~0.5s)
  • Ellipsis (...) creates longer pauses (~1s)
  • Em dashes (—) create brief pauses (~0.3s)
  • Front-load the hook — first sentence matters most
  • End with the app name or a clear CTA

Present the timed script to the user for approval before generating audio. Show both the timed outline and the final text block. Ask if they want changes to wording, pacing, or emphasis.


Step 4: Frame the Video (Optional)

If the user wants a device frame, wrap the recording:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/device-framer/scripts/frame_video.py \
  INPUT_VIDEO \
  -o ~/demo_project/framed.mp4 \
  -d iphone-16-pro --color natural-titanium \
  --bg '#0a0a0a' --scale 0.5 --padding 100

Recommended combos for demos: | Vibe | Device | Color | Background | |------|--------|-------|------------| | Premium dark | iphone-16-pro | natural-titanium | #0a0a0a | | Modern vibrant | iphone-17-pro | cosmic-orange | #1a1a2e | | Clean light | iphone-air | cloud-white | #f0f4f8 | | Bold | iphone-16 | ultramarine | #0a0a0a | | Classic | iphone-16-pro-max | black-titanium | #111111 |

⚠️ Use --scale 0.5 for most demos — native resolution is very large.

The framed video becomes the input for the rest of the pipeline.


Step 5: Generate Voiceover Audio

Use one of the voice generation scripts:

Gemini TTS (recommended — free, high quality):

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text "Your voiceover script here..." \
  --voice Orus \
  --style "Clear, confident, app demo narration" \
  -o ~/demo_project/voiceover.wav

OpenAI TTS:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/openai_tts.py \
  --text "Your voiceover script here..." \
  --voice nova \
  -o ~/demo_project/voiceover.mp3

ElevenLabs:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/elevenlabs.py \
  --text "Your voiceover script here..." \
  --voice rachel \
  -o ~/demo_project/voiceover.mp3

⚠️ You can also use --text-file instead of --text to read the script from a file:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text-file ~/demo_project/script.md \
  --voice Kore \
  --style "Friendly, clear, app demo narration" \
  -o ~/demo_project/voiceover.wav
Duration Check (CRITICAL)

After generating the voiceover, immediately check if it matches the video duration:

# Get voiceover duration
VO_DUR=$(ffprobe -v quiet -show_entries format=duration -of csv=p=0 ~/demo_project/voiceover.wav)

# Get video duration
VID_DUR=$(ffprobe -v quiet -show_entries format=duration -of csv=p=0 INPUT_VIDEO)

echo "Voiceover: ${VO_DUR}s, Video: ${VID_DUR}s"

If there's a mismatch greater than 3 seconds, fix it before proceeding:

| Situation | Fix | |-----------|-----| | Voiceover too long | Shorten the script — remove filler words, tighten phrasing, cut a line. Regenerate. | | Voiceover slightly long ( "Here's a screen recording of my app — turn it into a polished demo video"

With details: > "I have a screen recording at ~/Desktop/myapp.mov. It's a fitness app showing the workout tracking feature. Put it in an iPhone 16 Pro frame, add a friendly voiceover, and some upbeat background music."

Minimal: > "Add voiceover narration to this screen recording: ~/recordings/demo.mp4"

Full control: > "Take ~/Desktop/recording.mp4, frame it in iPhone 17 Pro cosmic orange on dark background, generate a professional voiceover script, use Gemini TTS with Charon voice, add minimal electronic background music, save to ~/Desktop/final_demo.mp4"

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.