扫描报告
15 /100
openclaw-agency-agents
管理和激活来自 agency-agents-zh 仓库的 176 个专业 AI 智能体人格
This is a legitimate agent persona management skill that clones a public GitHub repository and writes agent configuration files; no malicious behavior observed, though SKILL.md does not declare network access and setup.sh lacks version pinning.
可以安装
Add explicit network:READ and filesystem:WRITE declarations in SKILL.md. Pin the git clone to a specific commit hash or tag in setup.sh to prevent unexpected content changes from the upstream repository.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | SKILL.md does not declare required network access 文档欺骗 | SKILL.md:1 |
| 低危 | No version pinning on upstream repository 供应链 | scripts/setup.sh:53 |
| 提示 | Script header name mismatch 文档欺骗 | scripts/setup.sh:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | WRITE | ✓ 一致 | setup.sh:53, activate.sh:93 writes files to $WORKSPACE_DIR |
| 网络访问 | NONE | READ | ✓ 一致 | setup.sh:53 'git clone https://github.com/jnMetaCode/agency-agents-zh.git', upda… |
| 命令执行 | NONE | WRITE | ✓ 一致 | All scripts execute bash; activate.sh creates config files via heredoc and file … |
目录结构
7 文件 · 17.3 KB · 576 行 Shell 6f · 458L
Markdown 1f · 118L
├─
▾
scripts
│ ├─
activate.sh
Shell
│ ├─
list.sh
Shell
│ ├─
restore.sh
Shell
│ ├─
search.sh
Shell
│ ├─
setup.sh
Shell
│ └─
update.sh
Shell
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
agency-agents-zh | latest (unpinned) | https://github.com/jnMetaCode/agency-agents-zh.git | 否 | Clones latest main branch with no commit/tag pinning |
安全亮点
✓ No credential harvesting or environment variable enumeration observed
✓ No base64, obfuscation, or anti-analysis patterns detected
✓ No network exfiltration or C2 communication patterns
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No reverse shell, RCE, or arbitrary command injection
✓ All operations are scoped to a specific skill directory and workspace directory
✓ Backup mechanism provides config restore safety
✓ Uses set -euo pipefail for safe shell scripting