Scan Report
0 /100
agent-network
Agent 协作网络技能——让 OpenClaw 实例之间通过邮箱互相发现、委托任务、结算 Token 费用
Agent 协作网络技能,代码行为与文档声明完全一致,无越权操作,无恶意行为,邮箱凭证仅本地存储。
Safe to install
审核通过,可安全使用。
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | 所有脚本均读写agent-network目录下的JSON文件 |
| Network | READ | READ | ✓ Aligned | SMTP发送邮件、IMAP接收邮件,符合声明 |
| Shell | NONE | NONE | — | openclaw-agent-network.sh仅作为Python脚本包装器,无危险操作 |
7 findings
Info Email 邮箱地址
[email protected] SKILL.md:53 Info Email 邮箱地址
[email protected] references/formats.md:17 Info Email 邮箱地址
[email protected] references/formats.md:33 Info Email 邮箱地址
[email protected] references/formats.md:57 Info Email 邮箱地址
[email protected] references/formats.md:173 Info Email 邮箱地址
[email protected] references/formats.md:197 Info Email 邮箱地址
[email protected] scripts/init.py:56 File Tree
15 files · 59.1 KB · 1891 lines Python 10f · 1192L
Markdown 4f · 631L
Shell 1f · 68L
├─
▾
references
│ ├─
billing.md
Markdown
│ ├─
formats.md
Markdown
│ └─
protocol.md
Markdown
├─
▾
scripts
│ ├─
calculate_bill.py
Python
│ ├─
create_task.py
Python
│ ├─
get_token_usage.py
⚠
Python
│ ├─
init.py
Python
│ ├─
openclaw-agent-network.sh
Shell
│ ├─
receive_mail.py
Python
│ ├─
send_mail.py
Python
│ ├─
settle.py
Python
│ ├─
show_ledger.py
Python
│ ├─
show_task.py
Python
│ └─
validate_bill.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ 文档-代码一致性极高:所有脚本功能均已在SKILL.md中声明
✓ 邮箱凭证存储本地:SMTP/IMAP配置仅存储在identity.json,不对外传输
✓ 名片分享格式安全:对外分享时自动排除敏感信息(SMTP/IMAP密码)
✓ 使用标准库:所有Python脚本仅使用json、smtplib、imaplib等标准库,无第三方依赖
✓ 账单验证机制:validate_bill.py提供完整的验证逻辑,防止欺诈
✓ 主人确认机制:支持requireOwnerConfirmation配置,关键操作需主人确认
✓ 无混淆代码:所有代码清晰可读,无base64、eval等可疑模式
✓ 边界检查完善:settle.py检查余额,validate_bill.py验证账单合理性