Stock Inquiry - 股票查询
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: jisu-stock Version: 1.0.6 The jisu-stock skill bundle is a legitimate tool for querying stock market data via the JisuAPI service. The Python script (stock.py) is a straightforward wrapper that uses the requests library to fetch data from api.jisuapi.com using an environment-provided API key, and the documentation (SKILL.md) provides clear, non-malicious instructions for the AI agent.
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.
Your JisuAPI key will be used when the agent queries stock data, and those requests may count against your provider quota or plan.
The script reads the user's JisuAPI key from the environment and sends it to the external stock API as a request parameter. This is disclosed and purpose-aligned, but it is still credential use.
appkey = os.getenv("JISU_API_KEY") ... all_params = {"appkey": appkey} ... requests.get(url, params=all_params, timeout=10)Use a dedicated JisuAPI key if possible, keep it private, and monitor quota or billing on the provider account.
