eastmoney skills

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill appears purpose-aligned for financial data lookup, but users should notice that it uses an Eastmoney API key, sends queries to an external API, and saves result files locally.

This skill is reasonable for Eastmoney financial data lookup. Before installing, confirm you trust the Eastmoney API endpoint, set MX_APIKEY only in a trusted environment, avoid sending sensitive investment queries unless acceptable, and periodically clean the generated output files if they contain private information.

Static analysis

No static analysis findings were reported for this release.

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.

What this means

Your financial query text is sent to Eastmoney's API to retrieve data.

Why it was flagged

The code sends the user's query to a fixed external Eastmoney API endpoint. This is central to the skill's stated financial-data purpose and is disclosed, but users should know their query text leaves the local environment.

Skill content
BASE_URL = "https://mkapi2.dfcfs.com/finskillshub/api/claw/query" ... response = requests.post(self.BASE_URL, headers=headers, json=data, timeout=30)
Recommendation

Use the skill only when you are comfortable sending the query content to the listed Eastmoney API endpoint.

What this means

The skill can use your Eastmoney API key to make financial-data requests.

Why it was flagged

The skill reads an MX_APIKEY credential from the environment and uses it in the API request header. This is expected for the service, but the registry metadata says no required environment variables and no primary credential.

Skill content
self.api_key = api_key or os.getenv("MX_APIKEY") ... "apikey": self.api_key
Recommendation

Provide only the intended Eastmoney API key, keep it in a trusted environment, and revoke or rotate it if it is exposed.

What this means

Financial query results and raw API responses may remain in local output files.

Why it was flagged

The skill discloses that it saves retrieved results, including raw API JSON, under a local workspace path. This is purpose-aligned, but it means query outputs may persist beyond the immediate interaction.

Skill content
默认输出目录: `/root/.openclaw/workspace/mx_data/output/`(自动创建) ... `mx_data_{query}_raw.json` - API 原始 JSON 数据
Recommendation

Review or delete generated output files if the queries or returned data are sensitive.