扫描报告
5 /100
bw-openclaw-boost
OpenClaw效率提升工具包 - 包含成本追踪、记忆管理、压缩系统、权限控制等功能
This is a legitimate OpenClaw efficiency tool package. All behavior aligns with documentation — subprocess calls are read-only openclaw CLI invocations, all data stays in the skill-local directory, and there is no network exfiltration or credential harvesting.
可以安装
No action required. This skill is safe to use as documented.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md declares config/memory storage; files go to ~/.openclaw/bw-openclaw-boo… |
| 命令执行 | READ | READ | ✓ 一致 | SKILL.md states 'openclaw CLI(仅读取状态)'; all subprocess calls are 'openclaw status… |
| 网络访问 | NONE | NONE | — | No HTTP requests, no socket connections, no external IPs found in any file |
| 环境变量 | NONE | NONE | — | No iteration over os.environ for secrets; only uses PATH or PYTHON env vars |
| 技能调用 | NONE | NONE | — | No inter-skill invocation observed |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access; all data stored as JSON files locally |
目录结构
15 文件 · 104.2 KB · 3324 行 Python 10f · 3077L
Shell 3f · 132L
Markdown 1f · 92L
JSON 1f · 23L
├─
▾
tools
│ ├─
check_permission.sh
Shell
│ ├─
compaction_manager.py
Python
│ ├─
coordinator.py
Python
│ ├─
cost_tracker.py
Python
│ ├─
dream_consolidation.py
Python
│ ├─
feature_flags.py
Python
│ ├─
memory_relevance.py
Python
│ ├─
permission_manager.py
Python
│ ├─
slash_commands.py
Python
│ ├─
token_budget.py
⚠
Python
│ └─
tool_tracker.py
Python
├─
install.sh
Shell
├─
launch.sh
Shell
├─
SKILL.md
Markdown
└─
version.json
JSON
安全亮点
✓ All subprocess calls are read-only openclaw CLI invocations (status, cron list) — documented and scoped
✓ Data storage is strictly limited to skill-local directories (~/.openclaw/bw-openclaw-boost/)
✓ No network requests detected — all operations are local file I/O and CLI parsing
✓ No credential harvesting — no access to ~/.ssh, ~/.aws, .env, or environment variable scanning
✓ coordinator.py is explicitly local-only: '仅做本地任务记录,不发送消息'
✓ dream_consolidation.py explicitly preserves logs: '日志保留,不删除'
✓ No base64, no eval(), no piped curl/wget, no remote script execution
✓ Feature flags and permissions are fully local JSON config files
✓ No third-party dependencies beyond Python stdlib
✓ SKILL.md accurately describes all tool capabilities with no hidden functionality