BTC Monitor TalentverseX

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears aligned with its BTC/ETH monitoring purpose, but users should deliberately opt in before enabling Discord posting or recurring cron execution.

This appears to be a straightforward crypto market monitor. Before installing or running it, review config.json, use a virtual environment for dependencies, only provide a Discord bot token if you want Discord alerts, and run the cron setup script only if you want the monitor to continue running on a schedule.

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.

What this means

If enabled, the skill can post its market report to the configured Discord channel using the user's bot token.

Why it was flagged

The skill can use a Discord bot credential to post messages, but this is disclosed, optional, and aligned with the stated alerting feature.

Skill content
Optionally posts the report to Discord if enabled in config and the bot token exists in the environment
Recommendation

Enable Discord only when needed, use a least-privilege bot token, and confirm the configured channel ID before running.

What this means

If the cron helper is run, the monitor may keep running on schedule, writing logs and potentially sending Discord alerts if configured.

Why it was flagged

The helper can install a persistent scheduled cron job for recurring monitoring; this matches the scheduling purpose but continues running until removed.

Skill content
(crontab -l 2>/dev/null | grep -v "$CRON_MARKER" || true; echo "$CRON_JOB") | crontab -
Recommendation

Run the cron setup only if recurring monitoring is desired, review the schedule in config.json first, and remove the marked crontab entry to disable it.

What this means

Running the helper will install or update Python packages on the system or active environment.

Why it was flagged

The optional install helper updates pip and installs the declared Python dependency, which is normal for this type of script but modifies the local environment.

Skill content
python3 -m pip install --upgrade pip
python3 -m pip install -r "$ROOT_DIR/requirements.txt"
Recommendation

Prefer running it inside a virtual environment and review requirements.txt before installation.