扫描报告
5 /100
budgetRcd
个人记账预算管理(支持工作日/周末差异预算)
A minimal personal budget management skill with straightforward JSON file I/O that aligns perfectly with its documented behavior.
可以安装
This skill is safe to use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | agent.py reads/writes JSON files in ~/.openclaw/skills/budget/ |
| 网络访问 | NONE | NONE | — | No network operations in code |
| 命令执行 | NONE | NONE | — | No subprocess or shell commands |
| 环境变量 | NONE | NONE | — | No os.environ access |
| 凭据 | NONE | NONE | — | No credential access |
目录结构
7 文件 · 2.8 KB · 75 行 Markdown 1f · 31L
Python 1f · 25L
JSON 5f · 19L
├─
▾
config
│ ├─
config.json
⚠
JSON
│ └─
pools.json
JSON
├─
▾
data
│ ├─
budget_202604.json
JSON
│ ├─
expense_202604.json
JSON
│ └─
goals.json
JSON
├─
agent.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ All operations documented in SKILL.md match implementation exactly
✓ No shell execution or subprocess usage
✓ No network requests or external communications
✓ No credential harvesting or environment variable access
✓ All file operations scoped to dedicated skill directory (~/.openclaw/skills/budget/)
✓ Pure JSON file I/O with no obfuscation or dynamic code execution
✓ Clear file path mapping prevents path traversal
✓ MIT license with identified author (OpenClaw)