扫描报告
10 /100
Workspace Heartbeat Integration
将 workspace HEARTBEAT.md 与 self-improving heartbeat-state 同步,自动记录工作成果并更新长期记忆
A legitimate workspace heartbeat synchronization tool that uses only Python standard library with no suspicious behavior, credential access, network requests, or obfuscation. All file operations are scoped to declared workspace paths.
可以安装
This skill is safe to use. No security concerns identified. The hardcoded /root/.openclaw/workspace path is intentional and matches the skill's purpose.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md declares workspace memory/ write access; integration.py lines 60-75 imp… |
| 网络访问 | NONE | NONE | — | No network requests in integration.py - uses only standard library |
| 命令执行 | NONE | NONE | — | No subprocess or shell execution in Python code |
| 环境变量 | NONE | NONE | — | No os.environ iteration or credential harvesting |
| 技能调用 | NONE | NONE | — | No cross-skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser tool usage |
| 数据库 | NONE | NONE | — | No database access |
1 项发现
中危 外部 URL 外部 URL
https://clawhub.ai/skills/workspace-heartbeat-integration skill.json:6 目录结构
6 文件 · 19.7 KB · 604 行 Python 2f · 350L
Markdown 1f · 171L
Shell 1f · 71L
JSON 1f · 11L
Text 1f · 1L
├─
▾
source
│ └─
integration.py
Python
├─
▾
tests
│ └─
test_basic.py
Python
├─
install.sh
Shell
├─
requirements.txt
Text
├─
skill.json
JSON
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
None (standard library only) | N/A | pip | 否 | No external dependencies - uses only json, os, datetime, pathlib, sys, re |
安全亮点
✓ Uses only Python standard library (json, os, datetime, pathlib) - no external dependencies
✓ All file operations scoped to declared workspace paths (~/.openclaw/workspace)
✓ No network requests or data exfiltration
✓ No credential harvesting or environment variable iteration
✓ No obfuscation, base64 encoding, or eval() usage
✓ Well-documented SKILL.md with clear architecture and examples
✓ Comprehensive unit tests with tempfile isolation
✓ Idempotent operations prevent duplicate log entries
✓ Thread-safe with file locks mentioned in documentation