Investing
Analysis
The skill is mostly coherent for investing research, but it includes instructions and recurring prompts to execute real brokerage or crypto trades without explicit confirmation safeguards.
Findings (3)
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.
Run: monthly-dca.sh [budget] Execute trades via: - Interactive Brokers (ETFs) - Bitstamp/Kraken (Crypto)
This directs the agent workflow toward real brokerage and crypto-exchange trades, but the artifact does not add explicit user-confirmation, order-size, account, or reversal safeguards.
"name": "Monthly DCA Reminder", "schedule": { "kind": "cron", "expr": "0 10 1 * *" }, "payload": { "kind": "agentTurn", "message": "Monthly DCA time! Check budget, run monthly-dca.sh, execute trades." }The skill documents a recurring scheduled agent turn. It is presented as a cron example rather than an automatic install action, but it would create persistent monthly agent activity if configured.
curl -s "https://query1.finance.yahoo.com/v8/finance/chart/VWCE.DE" ... | jq -r ... ... if (( $(echo "$BTC < 50000" | bc -l) )); then
The helper script relies on external market-data services and local binaries such as curl, jq, and bc, while the registry requirements declare no required binaries.
