stock-screener-cn

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: stock-screener-cn Version: 1.0.0 The skill bundle provides a stock screener using AKShare for A-share and Hong Kong stock data. The `SKILL.md` and `references/strategies.md` files contain clear, task-oriented instructions and documentation, with no evidence of prompt injection attempts to subvert the agent. The `scripts/screen_stocks.py` code uses standard libraries (akshare, pandas, numpy) for data retrieval and analysis, handles arguments safely via `argparse`, and performs network requests solely for fetching public stock data, which is its stated purpose. There are no signs of sensitive data exfiltration, unauthorized command execution, persistence mechanisms, or obfuscation.

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

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.