BTC Monitor TalentverseX

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

NoteHigh Confidence
ASI10: Rogue Agents
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.