扫描报告
5 /100
council-v2
Multi-model council review skill that dispatches 3-5 independent AI reviewers and applies mechanical synthesis
This is a legitimate multi-model code review orchestration skill with transparent, documented behavior and no malicious indicators.
可以安装
This skill is safe to use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | SKILL.md states 'Reads content from file or stdin' |
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md declares bash script execution for council.sh and synthesize.py |
| 网络访问 | NONE | NONE | — | No network calls found in scripts; external URLs in README are documentation onl… |
| 环境变量 | NONE | NONE | — | No environment variable access observed |
| 技能调用 | WRITE | WRITE | ✓ 一致 | SKILL.md explicitly states 'spawns 3-5 independent AI reviewers' |
4 项发现
中危 外部 URL 外部 URL
https://openrouter.ai README.md:43 中危 外部 URL 外部 URL
https://openrouter.ai/api/v1 README.md:48 中危 外部 URL 外部 URL
https://docs.openclaw.ai/concepts/models README.md:57 中危 外部 URL 外部 URL
http://json-schema.org/draft-07/schema# references/schema.md:7 目录结构
10 文件 · 35.0 KB · 1152 行 Markdown 7f · 780L
Python 1f · 202L
Shell 2f · 170L
├─
▾
assets
│ └─
council-v2-banner.md
Markdown
├─
▾
references
│ ├─
review-types.md
Markdown
│ ├─
role-prompts.md
Markdown
│ ├─
schema.md
Markdown
│ └─
synthesis-rules.md
Markdown
├─
▾
scripts
│ ├─
council.sh
Shell
│ ├─
retro.sh
Shell
│ └─
synthesize.py
Python
├─
README.md
Markdown
└─
SKILL.md
Markdown
安全亮点
✓ Comprehensive SKILL.md with clear behavior documentation
✓ No credential harvesting or sensitive data access
✓ No obfuscation techniques (base64, eval, etc.)
✓ No remote script execution patterns (curl|bash, wget|sh)
✓ Clean subprocess usage limited to documented orchestration tasks
✓ JSON validation in synthesize.py prevents malformed input exploits
✓ No supply chain risks - Python stdlib only, no external dependencies
✓ Set -euo pipefail in bash scripts prevents silent failures
✓ No hidden functionality - all behavior matches documentation