Stock Monitor Skill 0.1.0
Analysis
The stock monitor largely matches its stated purpose, but package metadata/configuration inconsistencies and a persistent background daemon mean it should be reviewed carefully before installation.
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", "version": "0.1.0"
These internal metadata values differ from the supplied registry metadata, which lists a different owner ID, slug, and version. That weakens provenance and makes it harder to know which package identity/version the user is installing.
cp config.example.py config.py # 编辑 config.py 填入你的持仓
The documented user-specific configuration file is not included in the provided file manifest, while the code contains a built-in portfolio/watchlist. This makes the setup instructions materially inconsistent with the actual package.
nohup python3 "$SCRIPT_DIR/monitor_daemon.py" > "$LOG_DIR/monitor.log" 2>&1 & echo $! > "$PID_FILE"
The skill can start a long-running background daemon and persist its PID/logs under the user's home directory. This is disclosed and has stop/status commands, but users should notice the persistent behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"code": "600362", "name": "江西铜业", "cost": 57.00
The monitoring configuration includes portfolio symbols and cost bases, which are sensitive personal financial context if replaced with the user's real holdings.
