Scan Report
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.
Safe to install
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.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Missing allowed-tools declaration Doc Mismatch | SKILL.md:1 |
| Info | Documentation describes unimplemented functionality Doc Mismatch | scripts/monitor-signals.py:62 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | READ | ✓ Aligned | scripts/monitor-signals.py:96 - opens monitoring_log.jsonl |
| Network | NONE | READ | ✓ Aligned | Scripts mention RPC endpoints but no actual network calls implemented |
| Environment | NONE | NONE | — | No environment variable access in code |
| Shell | NONE | NONE | — | No subprocess or shell execution in code |
File Tree
4 files · 15.3 KB · 650 lines Markdown 3f · 456L
Python 1f · 194L
├─
▾
references
│ ├─
failure-analysis.md
Markdown
│ └─
trading-checklist.md
Markdown
├─
▾
scripts
│ └─
monitor-signals.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ 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