Scan Report
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.
Safe to install
No action needed. This is a straightforward utility script with no malicious behavior.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | scripts/main.py:98 — writes output file via open() when --output is specified |
| Network | NONE | NONE | — | scripts/main.py — no network imports (urllib, requests, socket) or external call… |
| Shell | NONE | NONE | — | scripts/main.py — no subprocess, os.system, or shell invocation |
| Environment | NONE | NONE | — | scripts/main.py — no os.environ access |
| Clipboard | NONE | NONE | — | scripts/main.py — no clipboard operations |
| Database | NONE | NONE | — | scripts/main.py — no database access |
| Browser | NONE | NONE | — | scripts/main.py — no browser automation |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation logic present |
File Tree
3 files · 6.2 KB · 229 lines Markdown 2f · 115L
Python 1f · 114L
├─
▾
references
│ └─
guidelines.md
Markdown
├─
▾
scripts
│ └─
main.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ 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