云梦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.
Using the skill will contact third-party finance websites with the requested stock symbols or market-data queries.
The skill performs outbound HTTP GET requests; this is expected for fetching stock-market data and is disclosed in the documentation.
response = requests.get(url, headers=HEADERS, timeout=timeout)
Use it for public market-data lookups and be aware that queries depend on external finance APIs and network availability.
Future installs could pull newer dependency versions with changed behavior or compatibility issues.
Dependencies are listed without pinned versions, so installs may resolve different package versions over time; this is common but reduces reproducibility.
pandas requests beautifulsoup4
Install in a virtual environment and consider pinning or reviewing dependency versions if reproducibility matters.
