"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.
Topics derived from your links, files, text, or keywords may be sent as web/search requests to i问财.
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.
链接:使用web_fetch获取内容并分析 ... 访问:`https://www.iwencai.com` ... 针对每个核心识别出的行业/概念进行搜索
Avoid using confidential or sensitive documents as input unless you are comfortable with derived search terms being queried externally.
Using the skill may run local Python code and create or overwrite an Excel file at the chosen output path.
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.
output_file = sys.argv[1] ... with pd.ExcelWriter(output_file, engine='openpyxl') as writer:
Keep the output path inside a workspace you control and review the file path before allowing the export.
The skill may fail or behave differently depending on locally installed Python packages and browser tooling.
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.
技能依赖以下工具:- Python 3.x - pandas - openpyxl - Chrome/Firefox浏览器(用于访问i问财)
Install required packages from trusted sources and prefer known-good versions if you use the Excel export.
