Scan Report
20 /100
conference-schedule-optimizer
Conference schedule optimization tool for scientific/medical conferences
Conference scheduling tool with declared shell permissions not actually used in code - mismatch between docs and implementation but no malicious behavior detected.
Safe to install
This skill is safe to use. Consider pinning allowed-tools to only Read and Write since no shell commands are executed in the actual implementation.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Shell permission declared but never used Doc Mismatch | SKILL.md:1 |
| Low | No dependency documentation Supply Chain | scripts/main.py:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | scripts/main.py:42 - open(schedule_file) |
| Filesystem | WRITE | READ | ✓ Aligned | SKILL.md declares Write but code only writes to --output path with json.dump |
| Shell | WRITE | NONE | ✗ Violation | SKILL.md declares 'Bash' but scripts/main.py contains no subprocess, os.system, … |
| Network | NONE | NONE | — | No network requests in code |
| Environment | NONE | NONE | — | No os.environ access |
| Skill Invoke | NONE | NONE | — | No skill invocation patterns |
File Tree
3 files · 10.5 KB · 364 lines Markdown 1f · 220L
Python 1f · 133L
JSON 1f · 11L
├─
▾
scripts
│ └─
main.py
Python
├─
SKILL.md
Markdown
└─
tile.json
JSON
Security Positives
✓ No network requests or external communications detected
✓ No credential or sensitive data access patterns
✓ No obfuscation techniques (base64, eval, or dynamic code execution)
✓ No file system abuse beyond reading/writing user-specified schedule files
✓ Uses only Python standard library - no external dependencies means no supply chain risk
✓ Clean, straightforward scheduling algorithm with no suspicious logic
✓ No hidden functionality or shadow operations
✓ MIT license provides transparency
✓ No credential harvesting or environment variable enumeration