云梦A股数据获取Skill

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to fetch public A-share market data from disclosed finance sites, with normal cautions around network access and unpinned Python dependencies.

Before installing, confirm you are comfortable with a Python package that makes network requests to Eastmoney/Sina Finance and install it in a controlled environment if you need pinned, reproducible dependencies.

Findings (2)

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

Using the skill will contact third-party finance websites with the requested stock symbols or market-data queries.

Why it was flagged

The skill performs outbound HTTP GET requests; this is expected for fetching stock-market data and is disclosed in the documentation.

Skill content
response = requests.get(url, headers=HEADERS, timeout=timeout)
Recommendation

Use it for public market-data lookups and be aware that queries depend on external finance APIs and network availability.

What this means

Future installs could pull newer dependency versions with changed behavior or compatibility issues.

Why it was flagged

Dependencies are listed without pinned versions, so installs may resolve different package versions over time; this is common but reduces reproducibility.

Skill content
pandas
requests
beautifulsoup4
Recommendation

Install in a virtual environment and consider pinning or reviewing dependency versions if reproducibility matters.