Scan Report
This report was generated in Chinese. Some content may be in Chinese.
0 /100
calculator
Perform mathematical calculations and unit conversions
纯标准库数学计算器,代码与文档完全一致,无任何越权操作。
Safe to install
无需修改,可直接使用。
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | 全程无文件读写 |
| Network | NONE | NONE | — | 全程无网络调用 |
| Shell | NONE | NONE | — | 全程无 subprocess/shell 调用 |
| Environment | NONE | NONE | — | 未读取任何环境变量 |
| Skill Invoke | NONE | NONE | — | 未调用其他技能 |
| Clipboard | NONE | NONE | — | 无剪贴板操作 |
| Browser | NONE | NONE | — | 无浏览器操作 |
| Database | NONE | NONE | — | 无数据库操作 |
File Tree
2 files · 10.6 KB · 310 lines Python 1f · 226L
Markdown 1f · 84L
├─
▾
scripts
│ └─
calculator.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ eval 沙箱设计完善:受限 allowed_names 白名单 + 清除 __builtins__,有效防止代码注入
✓ code.co_names 逐名审查,阻止未声明函数调用
✓ 仅依赖 Python 标准库,无第三方依赖,无供应链风险
✓ 文档与代码行为完全一致,无阴影功能
✓ 无网络请求、无文件系统访问、无 shell 执行,攻击面为零