Back to skill
v1.0.0

获取大A股票历史数据

ReviewClawScan verdict for this skill. Analyzed May 1, 2026, 7:20 AM.

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.

GuidanceReview carefully before installing if you need accurate current market data. The historical data functions and external finance APIs are purpose-aligned, but the “today’s change” AKShare path should be fixed or verified against another live source.

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.

Abnormal behavior control

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.

Human-Agent Trust Exploitation
SeverityMediumConfidenceHighStatusConcern
kline.py
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.

User impactA user could rely on stale stock prices or stale percentage changes while believing they are seeing today’s market movement.
RecommendationDo not rely on this function for live/current stock decisions until it uses dynamic dates, returns the data timestamp, and clearly labels whether the result is real-time or historical.
Agentic Supply Chain Vulnerabilities
SeverityLowConfidenceHighStatusNote
SKILL.md
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.

User impactInstalling the dependencies pulls external code whose behavior may vary by version.
RecommendationInstall in a virtual environment and prefer pinned, reviewed versions of akshare and pandas.