Finance Analysis

Security checks across malware telemetry and agentic risk

Overview

This skill appears to be a straightforward financial-analysis CLI that uses an optional Tushare API token and documented Python dependencies.

This skill looks safe to install if you are comfortable running a local Python finance CLI. Use a virtual environment, install dependencies from trusted sources, and only provide a Tushare token you are comfortable using for financial data queries.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

#
ASI03: Identity and Privilege Abuse
Low
What this means

If you provide a Tushare token, the skill can use your Tushare account access to fetch financial data.

Why it was flagged

The code reads a Tushare API token from the environment and passes it to the official provider API client. This is aligned with the skill's finance-data purpose and no token logging or unrelated use is shown.

Skill content
token = os.getenv('TUSHARE_TOKEN') ... return ts.pro_api(token)
Recommendation

Use a token intended for Tushare only, avoid sharing terminal output that might expose environment setup, and revoke or rotate the token if no longer needed.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

Installing the dependencies adds third-party code to your Python environment.

Why it was flagged

The skill depends on third-party Python packages. The versions are declared and pinned, and these dependencies are consistent with financial data analysis.

Skill content
"dependencies": { "tushare": "1.2.88", "pandas": "1.5.3", "numpy": "1.23.5" }
Recommendation

Install in a virtual environment and use trusted package sources before running the CLI.