Trusted — Risk Score 0/100
Last scan:18 hr ago Rescan
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.
Skill Namecomparison-table-gen
Duration20.9s
Enginepi
Safe to install
No action needed. This is a straightforward utility script with no malicious behavior.
ResourceDeclaredInferredStatusEvidence
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 5L · 115 B
├─ 📁 scripts
│ └─ 🐍 main.py Python 114L · 3.2 KB
└─ 📝 SKILL.md Markdown 110L · 2.9 KB

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