可信 — 风险评分 0/100
上次扫描:20 小时前 重新扫描
0 /100
comparison-table-gen
Auto-generates comparison tables for concepts, drugs, or study results in Markdown format
A benign comparison table generator with no security issues; all declared capabilities match the actual code implementation.
技能名称comparison-table-gen
分析耗时20.9s
引擎pi
可以安装
No action needed. This is a straightforward utility script with no malicious behavior.
资源类型声明权限推断权限状态证据
文件系统 WRITE WRITE ✓ 一致 scripts/main.py:98 — writes output file via open() when --output is specified
网络访问 NONE NONE scripts/main.py — no network imports (urllib, requests, socket) or external call…
命令执行 NONE NONE scripts/main.py — no subprocess, os.system, or shell invocation
环境变量 NONE NONE scripts/main.py — no os.environ access
剪贴板 NONE NONE scripts/main.py — no clipboard operations
数据库 NONE NONE scripts/main.py — no database access
浏览器 NONE NONE scripts/main.py — no browser automation
技能调用 NONE NONE No cross-skill invocation logic present

目录结构

3 文件 · 6.2 KB · 229 行
Markdown 2f · 115L Python 1f · 114L
├─ 📁 references
│ └─ 📝 guidelines.md Markdown 5L · 115 B
├─ 📁 scripts
│ └─ 🐍 main.py Python 114L · 3.2 KB
└─ 📝 SKILL.md Markdown 110L · 2.9 KB

安全亮点

✓ No external dependencies — only uses Python standard library (argparse, json, sys, typing)
✓ No network calls — fully offline operation
✓ No shell or subprocess invocation
✓ No credential or environment variable access
✓ No sensitive file path traversal (input validated as comma-separated strings only)
✓ Doc-to-code alignment: declared filesystem WRITE matches actual file output logic
✓ Simple, auditable code with no obfuscation