扫描报告
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.
可以安装
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
├─
▾
scripts
│ └─
main.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ 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