speak-debug-bundle
Collects diagnostic information for Speak support tickets, aiding in troubleshooting persistent issues effectively.
Install this skill
Security score
The speak-debug-bundle skill was audited on May 12, 2026 and we found 17 security issues across 2 threat categories, including 2 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Direct command execution function call
| 65 | const info = JSON.parse(execSync( |
Direct command execution function call
| 75 | const size = parseInt(execSync(`stat -f%z "${filePath}"`, { encoding: 'utf-8' })); |
Template literal with variable interpolation in command context
| 40 | ```bash |
Template literal with variable interpolation in command context
| 66 | `ffprobe -v quiet -print_format json -show_streams "${filePath}"`, |
Template literal with variable interpolation in command context
| 71 | if (stream.codec_name !== 'pcm_s16le') issues.push(`Codec: ${stream.codec_name} (need pcm_s16le)`); |
Template literal with variable interpolation in command context
| 72 | if (parseInt(stream.sample_rate) !== 16000) issues.push(`Sample rate: ${stream.sample_rate} (need 16000)`); |
Template literal with variable interpolation in command context
| 73 | if (stream.channels !== 1) issues.push(`Channels: ${stream.channels} (need 1/mono)`); |
Template literal with variable interpolation in command context
| 75 | const size = parseInt(execSync(`stat -f%z "${filePath}"`, { encoding: 'utf-8' })); |
Template literal with variable interpolation in command context
| 76 | if (size > 25 * 1024 * 1024) issues.push(`File too large: ${(size/1024/1024).toFixed(1)}MB (max 25MB)`); |
Template literal with variable interpolation in command context
| 79 | issues.push(`Cannot read file: ${e}`); |
Node child_process module reference
| 60 | import { execSync } from 'child_process'; |
External URL reference
| 49 | https://api.speak.com/v1/languages) |
External URL reference
| 90 | https://api.speak.com/v1/health |
External URL reference
| 94 | https://api.openai.com/v1/models |
External URL reference
| 111 | - [Speak Website](https://speak.com) |
External URL reference
| 112 | - [OpenAI Realtime API](https://platform.openai.com/docs/guides/realtime) |
External URL reference
| 113 | - [Speak GPT-4 Blog](https://speak.com/blog/speak-gpt-4) |