Aky Select

PassAudited by ClawScan on May 8, 2026.

Overview

This appears to be a disclosed A-share stock screener that fetches public market data, with the main things to notice being a third-party AkShare dependency and an optional cron schedule.

This skill looks coherent for screening stocks, not for trading or account access. Be aware that it installs and imports AkShare, calls external public market-data providers, and can be configured to run daily via cron; only enable the scheduled task if you want that persistence.

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.

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.

NoteHigh Confidence
ASI10: Rogue Agents
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.