"i问财选股技能"

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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

Topics derived from your links, files, text, or keywords may be sent as web/search requests to i问财.

Why it was flagged

The skill discloses a flow where user-provided links/content are analyzed and derived topics are searched on an external website. This is expected for the stock-screening purpose, but users should notice the external data flow.

Skill content
链接:使用web_fetch获取内容并分析 ... 访问:`https://www.iwencai.com` ... 针对每个核心识别出的行业/概念进行搜索
Recommendation

Avoid using confidential or sensitive documents as input unless you are comfortable with derived search terms being queried externally.

What this means

Using the skill may run local Python code and create or overwrite an Excel file at the chosen output path.

Why it was flagged

The included Python script writes an Excel file to the path supplied to it. This local execution and file creation are central to the declared Excel-export function, but the output path should still be controlled.

Skill content
output_file = sys.argv[1] ... with pd.ExcelWriter(output_file, engine='openpyxl') as writer:
Recommendation

Keep the output path inside a workspace you control and review the file path before allowing the export.

What this means

The skill may fail or behave differently depending on locally installed Python packages and browser tooling.

Why it was flagged

The dependencies are ordinary for generating Excel and visiting a website, but the registry provides no install spec or pinned package versions, so dependency setup depends on the user's local environment.

Skill content
技能依赖以下工具:- Python 3.x - pandas - openpyxl - Chrome/Firefox浏览器(用于访问i问财)
Recommendation

Install required packages from trusted sources and prefer known-good versions if you use the Excel export.