获取大A股票历史数据
Analysis
The skill mostly matches its stock-data purpose, but its “today’s change” function can return data from a fixed historical date range instead of the actual current day.
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.
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.
df = ak.stock_zh_a_hist(symbol=symbol, period="daily",
start_date="20260301", end_date="20260316",
adjust="qfq")This code is used by the first path in get_today_change, but it queries a fixed date range instead of dynamically querying the current day. If data is returned, the function can present that fixed-range latest row as the current quote.
pip install akshare pandas
The skill asks users to install third-party Python packages without pinned versions or a lockfile. This is expected for the stated AKShare integration, but it leaves dependency provenance and version changes to the user’s environment.
