Stock Monitor Skill 0.1.0
Analysis
This appears to be a purpose-aligned stock alert tool, but users should notice that it can run as a background daemon and contact third-party market/news APIs.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"ownerId": "kn70aj13hr3z4fpmfk1y2jmpz181gn2z", "slug": "stock-monitor-skill"
The embedded metadata does not match the supplied registry owner/slug, and the registry source is unknown. This is a provenance/package-quality gap users should verify before running code.
nohup python3 "$SCRIPT_DIR/monitor_daemon.py" > "$LOG_DIR/monitor.log" 2>&1 & echo $! > "$PID_FILE"
The control script starts a background process and records its PID. This is disclosed and has stop/status commands, but it means the skill can keep running after the initial invocation.
💡 Kimi建议: 🚀 多条件共振,趋势强劲,可考虑继续持有或分批减仓。
The skill presents investment-style recommendations. The same document includes cautionary usage tips, so this is a user-awareness note rather than a deception concern.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
url = "https://searchapi.eastmoney.com/api/suggest/get" ... url = f"https://search.sina.com.cn/?q={name}&c=news&sort=time"The analysis component sends stock identifiers/names to third-party financial/news services. This is expected for a market monitor, but it is still an external data flow.
