扫描报告
15 /100
trading-coagent
AI 與交易腳本協作技能。AI 每 5 分鐘監控交易訊號,與腳本並存共生
Trading co-agent skill with declared autonomous trading capabilities but implementation is a non-functional skeleton with all trading logic as TODOs - no actual malicious behavior present.
可以安装
The SKILL.md describes aggressive autonomous trading behavior, but the Python implementation is purely a monitoring scaffold with no real trading execution capability. Before deployment, ensure trading permissions are properly scoped and implement proper safeguards if actual trading logic is added.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Missing allowed-tools declaration 文档欺骗 | SKILL.md:1 |
| 提示 | Documentation describes unimplemented functionality 文档欺骗 | scripts/monitor-signals.py:62 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | READ | ✓ 一致 | scripts/monitor-signals.py:96 - opens monitoring_log.jsonl |
| 网络访问 | NONE | READ | ✓ 一致 | Scripts mention RPC endpoints but no actual network calls implemented |
| 环境变量 | NONE | NONE | — | No environment variable access in code |
| 命令执行 | NONE | NONE | — | No subprocess or shell execution in code |
目录结构
4 文件 · 15.3 KB · 650 行 Markdown 3f · 456L
Python 1f · 194L
├─
▾
references
│ ├─
failure-analysis.md
Markdown
│ └─
trading-checklist.md
Markdown
├─
▾
scripts
│ └─
monitor-signals.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ No credential harvesting or API key theft attempts
✓ No data exfiltration or C2 communication
✓ No obfuscation techniques (base64, eval, etc.)
✓ No suspicious network connections or remote script execution
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ No subprocess or shell execution present
✓ No persistence mechanisms or cron job setup
✓ Code is well-structured with proper error handling
✓ Async architecture is appropriate for the use case