Scan Report
20 /100
kindle2md
Convert Kindle HTML notebook exports to Obsidian Markdown format
A straightforward Kindle-to-Markdown converter with minor documentation gaps but no malicious behavior detected.
Safe to install
Consider adding explicit declaration of clipboard and filesystem WRITE capabilities to SKILL.md for full transparency.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Clipboard access undocumented Doc Mismatch | scripts/kindle_notes_to_md.py:183 |
| Low | Filesystem WRITE permission implied but not declared Doc Mismatch | SKILL.md:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | WRITE | ✓ Aligned | SKILL.md describes file output but declares only READ for config |
| Network | NONE | NONE | — | No network operations observed |
| Shell | WRITE | WRITE | ✓ Aligned | SKILL.md declares python script execution |
| Environment | NONE | NONE | — | No environment variable access |
| Skill Invoke | NONE | NONE | — | No skill invocation |
| Clipboard | NONE | READ | ✓ Aligned | pyperclip.copy() at line 183 |
| Browser | NONE | NONE | — | No browser operations |
| Database | NONE | NONE | — | No database access |
File Tree
3 files · 10.4 KB · 327 lines Python 1f · 264L
Markdown 2f · 63L
├─
▾
references
│ └─
config.md
Markdown
├─
▾
scripts
│ └─
kindle_notes_to_md.py
Python
└─
SKILL.md
Markdown
Dependencies 3 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
beautifulsoup4 | * | pip | No | Standard HTML parser library |
pyperclip | * | pip | No | Cross-platform clipboard access |
eglogging | * | pip | No | Logging utility |
Security Positives
✓ No network requests or external communication
✓ No credential harvesting or environment variable access
✓ No obfuscation, base64 encoding, or anti-analysis techniques
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ No remote code execution or shell command injection
✓ Uses legitimate, well-known Python libraries (BeautifulSoup, pyperclip)
✓ File operations are limited to user-provided input and configured output directory
✓ No persistence mechanisms or backdoors
✓ No supply chain risks - dependencies are standard libraries