Scan Report
0 /100
acronym-unpacker
Medical acronym disambiguation tool for resolving ambiguous abbreviations based on clinical context
A benign medical acronym disambiguation utility with no security issues found — all behavior is declared, minimal, and safe.
Safe to install
This skill is safe to use. No action required.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | NONE | ✓ Aligned | No file operations in scripts/main.py |
| Network | NONE | NONE | — | No network imports or calls in scripts/main.py |
| Shell | NONE | NONE | — | No subprocess or os.system calls |
| Environment | NONE | NONE | — | No os.environ access |
| Skill Invoke | NONE | NONE | — | No skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser interaction |
| Database | NONE | NONE | — | No database access |
File Tree
2 files · 8.2 KB · 266 lines Markdown 1f · 171L
Python 1f · 95L
├─
▾
scripts
│ └─
main.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ No network requests or external connections — pure local logic
✓ No subprocess, shell execution, or system command calls
✓ No file system writes or reads beyond loading the script itself
✓ No environment variable access or credential exposure
✓ No obfuscation (no base64, eval, or encoded payloads)
✓ No external dependencies — only stdlib (argparse)
✓ Hardcoded acronym database with no data exfiltration surface
✓ Documentation accurately reflects implementation behavior