shorts-generator
PassAudited by ClawScan on May 10, 2026.
Overview
This is an instruction-only short-video generation skill with no executable code, but users should notice that it may rely on third-party media and voice services plus provider API keys.
This skill appears safe to install as an instruction-only helper, but treat provider integrations as optional and user-directed. Before using API-key-backed stock media, AI image, transcription, translation, or voiceover services, confirm which provider will receive your content and use limited-scope credentials where possible.
Findings (2)
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.
You may need to provide API keys or subscriptions for media providers, which could allow the skill or agent to use paid third-party services on your behalf.
The skill expects possible third-party API keys or subscriptions for asset sourcing. This is aligned with video generation, but users should notice credential use because the registry metadata declares no required environment variables or primary credential.
type AssetSource =
| { type: 'pexels'; apiKey: string }
| { type: 'pixabay'; apiKey: string }
| { type: 'unsplash'; apiKey: string }
| { type: 'storyblocks'; subscription: string }Use provider keys with the narrowest available scope, monitor usage, and avoid giving credentials unless you explicitly request features that need them.
Text, audio, or video content used for generation could be processed by selected third-party services.
The workflow may use external voice providers to synthesize audio from generated scripts. This is expected for a video generator, but it means script text and related content may cross provider boundaries.
voiceProvider: 'elevenlabs' | 'edge-tts' | 'openai'; ... const audio = await this.synthesizeVoiceover(script, params.voiceProvider);
Do not submit confidential scripts, private media, or sensitive personal information unless you trust the chosen provider and understand its data policy.
