stock-screener-cn

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a disclosed stock-screening skill that fetches public market data, with the main caution being unpinned Python dependencies from a limited-provenance source.

This skill looks coherent for screening stocks with public market data. Before installing, treat it like any Python market-data script: use a virtual environment, review or pin dependencies, and remember that the output is technical analysis only, not investment advice.

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

Installing unpinned packages can pull whatever versions are current at install time, including future versions with different behavior.

Why it was flagged

The skill asks the user to install unpinned third-party Python packages. This is expected for a stock-data screener, but package versions and provenance are not constrained in the artifact.

Skill content
pip install akshare pandas numpy
Recommendation

Install in a virtual environment, verify package sources, and consider pinning known-good versions of akshare, pandas, and numpy.