Tvscreener

PassAudited by ClawScan on May 1, 2026.

Overview

This skill coherently queries TradingView market screener data, with the main caution that its shell wrappers can install or upgrade an unpinned Python dependency.

Install and run this skill in a virtual environment, verify the tvscreener package you are installing, and provide CSV output paths deliberately. The included code otherwise appears focused on public market screener queries and does not show credential use or unrelated data access.

Findings (1)

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

Running the wrapper may change the local Python environment by installing the latest available tvscreener package.

Why it was flagged

The wrapper can install or upgrade the external `tvscreener` package automatically if the import check fails, and the version is not pinned.

Skill content
"$PYTHON_BIN" - <<'PY' >/dev/null 2>&1 || "$PYTHON_BIN" -m pip install -q -U tvscreener
Recommendation

Use a virtual environment and consider pinning or reviewing the tvscreener package version before relying on the wrapper.