A股数据SKILL
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a read-only A-share market-data skill, with minor notes about third-party Python packages, external data APIs, and local caching.
This skill looks reasonable for read-only A-share data analysis. Before installing, be comfortable with installing its Python dependencies, contacting public market-data APIs, and using local caches; review commands before large batch or all-market requests.
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.
A package update or compromised dependency could affect the skill's behavior in the user's Python environment.
The skill relies on several third-party Python packages without version pins. This is purpose-aligned for market-data retrieval but means installed behavior can depend on upstream package versions.
pip install akshare MyTT pandas numpy requests
Install in an isolated environment and consider pinning or reviewing package versions before use.
Stock or market queries may be sent to external data services when using those features.
The realtime script can call external APIs for market news and board data. This is related to the skill's stated market-data purpose, but it expands the set of third-party services contacted.
MARKET_NEWS_URL = "https://dang-invest.com/api/market/news" BOARDS_SUMMARY_URL = "https://dang-invest.com/api/market/boards/summary" BOARDS_DETAIL_URL = "https://dang-invest.com/api/market/boards/detail"
Review generated commands for news, boards, and batch queries, and avoid sending private investment strategy details if that matters to you.
The agent may answer from cached public market-reference data rather than freshly fetched data.
The script stores retrieved public A/H stock data in a local cache for later reuse. This is expected for performance, but cached data can become stale or influence later answers.
cache_file = script_dir.parent / "cache" / "ah_stocks.json" ttl_sec = 12 * 3600
Use the documented no-cache option or clear the cache when freshness is important.
