扫描报告
5 /100
audio-quality-check
Analyze audio recording quality - echo detection, loudness, speech intelligibility, SNR, spectral analysis
Audio recording quality analyzer with legitimate audio processing functionality and no security issues.
可以安装
This skill is safe to use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 命令执行 | WRITE | WRITE | ✓ 一致 | scripts/analyze_recording.py:52 - subprocess.run for ffprobe/ffmpeg |
| 文件系统 | READ | READ | ✓ 一致 | scripts/analyze_recording.py:26 - Path.glob for audio files |
| 文件系统 | WRITE | WRITE | ✓ 一致 | scripts/analyze_recording.py:57 - extract_track writes temp WAV files |
目录结构
3 文件 · 29.1 KB · 776 行 Python 1f · 624L
Markdown 1f · 129L
JSON 1f · 23L
├─
▾
evals
│ └─
evals.json
JSON
├─
▾
scripts
│ └─
analyze_recording.py
Python
└─
SKILL.md
Markdown
依赖分析 7 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
numpy | * | pip | 否 | Version not pinned but standard scientific Python |
soundfile | * | pip | 否 | Version not pinned |
scipy | * | pip | 否 | Version not pinned |
pyloudnorm | * | pip | 否 | Version not pinned |
pesq | * | pip | 否 | Version not pinned |
pystoi | * | pip | 否 | Version not pinned |
librosa | * | pip | 否 | Version not pinned |
安全亮点
✓ Code fully matches documented behavior in SKILL.md
✓ Uses only declared dependencies (ffmpeg, ffprobe, numpy, soundfile, scipy, pyloudnorm, pesq, pystoi, librosa)
✓ No credential or sensitive path access
✓ No network exfiltration or external data transmission
✓ No base64 encoding, eval(), or obfuscated code
✓ Legitimate audio analysis: loudness (EBU R128), echo detection, PESQ/STOI metrics, spectral analysis, SNR estimation
✓ Temporary files properly managed and cleaned up
✓ No hidden functionality or suspicious patterns