Scan Report
20 /100
docx-trackchanges-and-comments
Word文档 (.docx) 处理,支持修订模式(Track Changes)和批注操作
A legitimate Word document processing skill with no malicious behavior; minor issue is an over-broad shell:WRITE declaration in allowed-tools that doesn't match actual usage.
Safe to install
Narrow the allowed-tools declaration: remove shell:WRITE since the Python script uses no subprocess, and pin the python-docx dependency to a specific version for supply-chain safety.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Shell:WRITE declared but never used Doc Mismatch | SKILL.md:1 |
| Low | python-docx dependency not pinned to a version Supply Chain | scripts/track_changes.py:9 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | scripts/track_changes.py:135 — shutil.copy(input_file, output_file); lines 140-1… |
| Shell | WRITE | NONE | ✓ Aligned | scripts/track_changes.py — no subprocess, no os.system, no Popen anywhere in the… |
File Tree
2 files · 10.1 KB · 396 lines Python 1f · 201L
Markdown 1f · 195L
├─
▾
scripts
│ └─
track_changes.py
Python
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
python-docx | * | import | No | No version pinned; no requirements.txt or pyproject.toml found |
Security Positives
✓ No network requests (no urllib, requests, httpx, socket calls)
✓ No credential or environment variable access
✓ No base64, eval, or obfuscation
✓ No sensitive file/path access (~/.ssh, ~/.aws, .env)
✓ No data exfiltration or C2 communication
✓ No reverse shell, no subprocess abuse
✓ Clean OOXML manipulation using the python-docx library API
✓ No hidden instructions in comments or documentation