Crypto Price Monitor
Analysis
The skill appears to do what it advertises—check crypto prices and optionally send alerts—with only expected external API, Telegram token, and scheduling considerations.
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.
*/15 * * * * cd /path/to/skill && python3 crypto_alert.py >> /tmp/crypto_alerts.log 2>&1
The documentation shows how to run the script periodically with cron. This is expected for a monitoring tool, but it creates recurring background execution if the user installs it.
Source: unknown; Homepage: none; No install spec — this is an instruction-only skill.
The artifacts do not include a homepage or known source link. There is no automatic installer, but provenance is limited.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"telegram_bot_token": "YOUR_BOT_TOKEN", "telegram_chat_id": "YOUR_CHAT_ID"
The skill supports an optional Telegram bot token and chat ID for alert delivery. This is aligned with the stated purpose, but the token is a credential that should be protected.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
url = f"https://api.telegram.org/bot{bot_token}/sendMessage" ... requests.post(url, json=payload, timeout=10)When Telegram is configured, alert summaries are sent to Telegram's API. This external data flow is disclosed and purpose-aligned, but users should understand what alert text is being sent.
