A股短线交易决策 A Share Short Term Decision

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a market-analysis skill that fetches A-share data and writes local reports, with notable but purpose-aligned risks around unpinned dependencies, scheduled jobs, and config changes.

Before installing, use a virtual environment, pin or review the Python dependencies, decide whether you want the recurring scheduler jobs enabled, and treat the generated stock outputs as research rather than automatic trading instructions.

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.

What this means

Installing unpinned packages can pull unexpected future versions or transitive dependencies.

Why it was flagged

The README provides a user-directed install command for runtime dependencies, but the packages are unpinned and the registry metadata has no install spec. These dependencies are directly related to the stated AkShare market-data purpose.

Skill content
pip install akshare pandas
Recommendation

Install in an isolated environment, verify package provenance, and preferably pin known-good versions of akshare and pandas.

What this means

If the scheduler is active, the skill may run recurring analysis jobs and write report artifacts without a fresh manual command each time.

Why it was flagged

The skill defines recurring weekday jobs for market scans and daily reports. This is persistent/autonomous scheduling, but it matches the stated daily market-analysis workflow.

Skill content
cron: "30 14 * * 1-5" ... task: short_term_signal_engine ... cron: "20 15 * * 1-5" ... task: generate_daily_report
Recommendation

Enable the schedule only if you want recurring market scans; otherwise remove or disable the scheduler entries.

What this means

Running the apply option can change how later stock recommendations are scored and filtered.

Why it was flagged

The optional optimization workflow can change the runtime configuration that affects future recommendations. The behavior is disclosed and aligned with strategy tuning.

Skill content
Optional: apply optimized full config to runtime config. ... optimize_from_aggressive.py --apply-to-config
Recommendation

Review and back up config.json before using --apply-to-config, and compare generated config artifacts under data/ before applying them.