扫描报告
0 /100
chart-mpl
Generate PNG/SVG charts from CSV data using matplotlib
Clean chart generation skill using matplotlib with no security concerns - all operations are documented, focused, and necessary for CSV-to-chart visualization.
可以安装
Approve for use. The skill is a straightforward data visualization tool with appropriate, well-documented behavior.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | READ | ✓ 一致 | scripts/chart_mpl.py:100 - open(csv_path) |
| 文件系统 | NONE | WRITE | ✓ 一致 | scripts/chart_mpl.py:68 - os.makedirs(), plt.savefig() |
| 命令执行 | NONE | WRITE | ✓ 一致 | SKILL.md - venv/pip setup (documented, necessary) |
目录结构
2 文件 · 15.6 KB · 404 行 Python 1f · 325L
Markdown 1f · 79L
├─
▾
scripts
│ └─
chart_mpl.py
Python
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
matplotlib | * | pip | 否 | Version not pinned but well-established package |
numpy | * | pip | 否 | Version not pinned but well-established package |
安全亮点
✓ No network requests or external communications detected
✓ No credential harvesting or sensitive path access
✓ No obfuscation or encoded payloads
✓ No subprocess/exec calls in main script
✓ Standard library and matplotlib/numpy only - trusted dependencies
✓ Clear documentation of all CLI arguments and chart types
✓ Proper error handling with informative messages
✓ Clean, focused implementation with single responsibility