Aky Select

PassAudited by VirusTotal on May 8, 2026.

Overview

Type: OpenClaw Skill Name: aky-select Version: 2.0.0 The AKY-select skill is a legitimate stock screening tool for the A-share market. It uses the 'akshare' library to fetch financial data from public sources (East Money, Tencent, Sina) and implements a 9-point technical analysis strategy as described in SKILL.md. The Python script (scripts/aky_select.py) performs data processing using pandas and numpy without any signs of malicious behavior, data exfiltration, or unauthorized system access.

Findings (0)

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 or running the skill depends on AkShare and its transitive dependencies running locally.

Why it was flagged

The skill relies on a third-party Python package for market-data access. This is disclosed and expected for the stock-screening purpose.

Skill content
[0] uv | package: akshare
Recommendation

Install from a trusted package source and review or pin the dependency if you require stricter supply-chain control.

What this means

The script can continue running automatically after installation and write daily log files.

Why it was flagged

The documentation provides a command that, if the user runs it, adds a recurring weekday cron job for the stock screener.

Skill content
(crontab -l 2>/dev/null; echo "5 15 * * 1-5 cd ~/.openclaw/workspace && python3 skills/aky-select/scripts/aky_select.py >> skills/aky-select/logs/aky_\$(date +\%Y\%m\%d).log 2>&1") | crontab -
Recommendation

Only add the cron entry if you want daily scheduled runs; use crontab -e or crontab -l to review and remove duplicate or unwanted entries.