AI-Technical-Analysis
PassAudited by ClawScan on May 13, 2026.
Overview
This stock-analysis skill appears purpose-aligned, with the main caveat that it runs a local Python script using undeclared third-party data-analysis packages.
This appears to be a benign technical-analysis helper. Before installing, note that it runs a Python script and relies on external Python packages and public market-data providers; make sure those dependencies come from trusted sources. The investment signals are informational and should not replace independent financial judgment.
Findings (2)
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.
Using the skill may run Python code on the user’s machine to fetch market data and produce an analysis report.
The skill explicitly directs execution of a bundled Python script. This is central to the stated technical-analysis purpose, but it is still local code execution the user should notice.
调用 `scripts/quant_analyzer.py` 执行分析: `python scripts/quant_analyzer.py 600519`
Run it only in an environment where you are comfortable executing the bundled script, and review or sandbox it if you require stricter local-code controls.
The skill may fail unless these packages are already installed, and users depend on the behavior and provenance of those external packages.
The script depends on third-party Python packages, including akshare for market data, while the provided install metadata does not declare an install mechanism or required packages.
import pandas as pd import numpy as np import akshare as ak
Install dependencies from trusted package sources and consider pinning package versions if using this skill in a repeatable or sensitive environment.
