A股数据获取 A specialized data collection tool for Chinese A-share market
Analysis
The artifacts describe a coherent public stock-market data collector, with expected local storage, network fetching, manual Python setup, and optional scheduling that users should review before use.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
python scripts/day.py get all --limit 10 ... # Traditional usage (fetch all active stocks) ... python scripts/day_parallel.py
The skill documents broad and parallel fetch commands that can make many external API calls and update local data files/databases. This is consistent with a stock data collector, but users should notice the bulk-operation scope.
pip install requests pip install sqlite3 pip install pandas pip install akshare
The setup instructions rely on unpinned PyPI package installs, while the registry metadata declares no required binaries or environment requirements. These dependencies are plausible for the stated purpose but should be installed carefully.
scripts/schedule_config.py # OpenClaw cron job configuration
The file structure advertises a cron configuration, indicating the skill may support scheduled/background data collection. That is purpose-aligned for regular market-data updates, but scheduled persistence should be explicit to the user.
