股智Alpha

ReviewAudited by ClawScan on May 12, 2026.

Overview

The skill appears to be a stock-analysis tool, but it needs review because its artifacts can overstate the data source and scan scope behind financial recommendations.

Before installing, verify the actual command to run, use an isolated Python environment, and treat reports as informational rather than investment advice. Pay special attention to whether fund-flow data is real akshare data or an estimate, and whether a scan covered the full market or only a core pool.

Findings (5)

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.

What this means

A user could treat estimated fund-flow and SLSV scores as if they came from a real main-capital-flow data source when making investment decisions.

Why it was flagged

The single-stock report labels any non-empty fund-flow result as 'akshare'. In the provided FundFlowCollector, the default path can estimate fund flow from price/volume data rather than using akshare, while SKILL.md presents fund flow as real-time akshare data.

Skill content
资金流: {'价量估算' if len(flow_df)==0 else 'akshare'}
Recommendation

Either actually use akshare when claiming akshare data, or clearly label estimated fund-flow data in SKILL.md and every report output.

What this means

A user may believe the Top N list is selected from the whole A-share market when it may only be selected from a smaller default pool.

Why it was flagged

The default screener uses a core stock pool unless --full-scan is supplied, while the skill description and examples emphasize A-share full-market scanning.

Skill content
codes = args.codes.split(",") if args.codes else get_pool(core_only=True)
Recommendation

Make the default scan scope explicit in user-facing output and SKILL.md, and document or use --full-scan whenever claiming full-market coverage.

What this means

The agent may not invoke the intended screener reliably.

Why it was flagged

SKILL.md repeatedly documents main.py as the entrypoint, but the provided file manifest does not include main.py. If followed from the wrong working directory, this could fail or run an unintended local file named main.py.

Skill content
python main.py --mode scan --top-n 10
Recommendation

Package the referenced main.py or update SKILL.md to call the included script, such as python scripts/run_screener.py, using a clear skill-relative path.

What this means

Installation may pull newer dependency versions than the publisher tested.

Why it was flagged

The skill depends on PyPI packages using lower-bound version ranges rather than pinned versions or a lockfile. This is common for Python tools but means future dependency changes can alter behavior.

Skill content
pandas>=2.0.0
numpy>=1.24.0
httpx>=0.24.0
akshare>=1.18.0
Recommendation

Install in an isolated virtual environment and prefer pinned, reviewed dependency versions for reproducible behavior.

What this means

Third-party providers can see queried stock symbols, and tampered or unavailable data could affect the report.

Why it was flagged

The skill retrieves market data from external HTTP endpoints. This is expected for a stock-data skill, but the data source and network path influence the recommendations.

Skill content
URL=f'http://money.finance.sina.com.cn/quotes_service/api/json_v2.php/CN_MarketData.getKLineData?symbol={code}&scale={ts}&ma=5&datalen={count}'
Recommendation

Treat outputs as informational, verify important data against trusted sources, and prefer HTTPS/data-source validation where possible.