free-mp4-pptzc
ReviewAudited by ClawScan on May 10, 2026.
Overview
The skill mostly matches its presentation-video purpose, but HTML mode can automatically install unpinned Playwright/Chromium and it sends narration text to an external TTS service.
Review before installing or running HTML mode. Ask the agent to get your approval before installing Playwright/Chromium, avoid confidential scripts unless external TTS is acceptable, and preview the generated slides to remove hardcoded template branding.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The skill may modify the local Python environment and download a browser binary without a separate install approval step.
Running HTML mode can automatically install an unpinned package and download Chromium when Playwright is missing, despite the registry showing no install spec.
if args.install_playwright or not find_playwright():
install_playwright()
...
subprocess.run(["pip", "install", "playwright"], check=True)
subprocess.run(["python", "-m", "playwright", "install", "chromium"], check=True)Require explicit user confirmation before dependency installation, move dependencies into a declared install spec, and pin package/browser versions.
Private or confidential presentation scripts may be sent to the TTS provider to create narration.
Narration text is passed to Edge TTS to generate audio, which implies external provider communication for the supplied script.
communicate = edge_tts.Communicate(
text,
voice,
rate=rate,
pitch=pitch
)
await communicate.save(output)Disclose the TTS provider clearly and avoid submitting sensitive scripts unless the user accepts that external processing.
If used as-is, generated videos may include unrelated branding or sample text that the user did not intend to publish.
The included HTML template contains fixed sample branding/content rather than neutral placeholders.
<h1 class="title">SenseNova 6.7 Flash-Lite</h1> <p class="subtitle">工作效果展示与未来展望</p> ... <span class="footer-text">商汤科技 AI 助手</span>
Preview generated slides and replace hardcoded template text with user-provided placeholders before using HTML mode.
