Scan Report
5 /100
zhipu-free-image-video
智谱免费图片与视频生成技能
Legitimate Zhipu AI image/video generation skill with clean code, proper API key handling, and no suspicious behavior.
Safe to install
This skill is safe to use. No security concerns identified.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Undeclared capability in allowed-tools mapping | SKILL.md:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Shell | NONE | WRITE | ✓ Aligned | All scripts use #!/usr/bin/env node shebang |
| Network | NONE | READ | ✓ Aligned | lib.js:38 uses https.request to open.bigmodel.cn |
| Environment | NONE | READ | ✓ Aligned | lib.js:14 reads IMAGE_VIDEO_GENERATION_API_KEY or ZHIPU_API_KEY |
| Filesystem | NONE | NONE | — | No filesystem access found |
File Tree
8 files · 14.1 KB · 464 lines JavaScript 7f · 282L
Markdown 1f · 182L
├─
▾
scripts
│ ├─
batch_generate_images.js
JavaScript
│ ├─
configure_models.js
JavaScript
│ ├─
generate_image.js
JavaScript
│ ├─
generate_video.js
JavaScript
│ ├─
lib.js
JavaScript
│ ├─
query_video_result.js
JavaScript
│ └─
wait_for_video.js
JavaScript
└─
SKILL.md
Markdown
Security Positives
✓ All network requests target a single, legitimate AI API endpoint (open.bigmodel.cn)
✓ API keys are properly sourced from environment variables, not hardcoded
✓ No obfuscation, base64, or eval patterns present
✓ No credential exfiltration or data theft patterns
✓ No filesystem access beyond script execution
✓ No remote code execution, curl|bash, or suspicious download patterns
✓ Batch processing includes proper rate limiting (batch_size, max_concurrent, delay)
✓ No access to sensitive paths like ~/.ssh, ~/.aws, or .env files
✓ Clean, readable code with no hidden functionality