Tushare Pro

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a coherent read-only Tushare market-data skill, with the main things to notice being its API token requirement and unpinned Python dependencies.

This skill looks suitable for fetching Tushare market data, but install it only if you are comfortable providing a Tushare API token and installing the Python dependencies it requires. Protect the token like a password, and use the official Tushare site directly if you do not want to use the parameterized registration link.

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

Anyone with access to the configured token may be able to use the user's Tushare API quota or paid permissions.

Why it was flagged

The skill asks the user to configure a Tushare API credential. This is expected for Tushare access, but the token can represent account/API privileges.

Skill content
export TUSHARE_TOKEN="your-api-token-here"
Recommendation

Use a token intended for this purpose, avoid sharing shell configuration files, and rotate the token if it is exposed.

What this means

Installing dependencies trusts the maintainers and the package index for tushare and pandas.

Why it was flagged

The setup installs unpinned Python packages. This is normal for a Python-based Tushare wrapper, but it relies on the current packages available from the package index.

Skill content
pip3 install tushare pandas --user
Recommendation

Install dependencies from a trusted environment, and consider pinning known-good package versions if reproducibility or supply-chain control matters.

What this means

Using the provided signup link may associate registration with that parameter.

Why it was flagged

The registration link includes an extra reg parameter rather than just the base Tushare site, which may indicate referral or registration tracking.

Skill content
https://tushare.pro/weborder/#/login?reg=503098
Recommendation

If you prefer not to use a parameterized signup link, navigate to the official Tushare homepage directly.