postey-video
Pass
Audited by Gen Agent Trust Hub on Aug 29, 2026
Risk Level: SAFECOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [COMMAND_EXECUTION]: The skill uses a dedicated CLI script (
scripts/postey.js) to interface with system utilities such asffmpeg,yt-dlp,whisper, andImageMagick. These executions are secure as they use array-based argument passing viaspawnSync, which prevents shell injection. Additionally, the skill implements amediaEnvwrapper to strip sensitive API keys and tokens from the environment variables passed to these external processes, preventing accidental credential leakage. - [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted external data in the form of video audio (transcribed via Whisper) and video metadata (fetched via
yt-dlp). - Ingestion points: Data is ingested through the
transcribesubcommand inscripts/postey.jswhich processes local files and remote URLs. - Boundary markers: The documentation in
references/video-to-everywhere.mdprovides explicit instructions for the AI agent to treat the transcript as a 'seed' for crafting new content rather than literal output. - Capability inventory: The skill has capabilities for file reading/writing and network access to the vendor's API (
srvr.postey.ai). - Sanitization: The skill includes an
assertPublicHttpUrlfunction to block access to loopback and private network addresses (preventing SSRF) and aredactUrlsfunction to remove sensitive query parameters from URLs displayed in logs or error messages.
Audit Metadata