股票查询

PassAudited by ClawScan on May 1, 2026.

Overview

This is a small stock-quote CLI that only contacts Sina Finance for requested quotes; the main cautions are a U.S.-stock support mismatch and minor metadata under-declaration.

This appears safe for simple A-share and Hong Kong stock quote lookups. Before installing, note that U.S. stock examples are not implemented in the code, Node may be required despite the registry metadata, and queried tickers are sent to Sina Finance.

Findings (3)

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

Users may expect U.S. stock lookups to work, but the tool will reject those symbols.

Why it was flagged

The executable only supports 6-digit A-share and 5-digit Hong Kong symbols, which contradicts the user-facing claim that U.S. stocks such as AAPL/MSFT are supported.

Skill content
reject(new Error('暂只支持A股(6位数字)和港股(5位数字)'))
Recommendation

Treat the skill as an A-share/Hong Kong stock lookup unless the code is updated to implement U.S. stock support.

What this means

The skill may require a Node runtime even though the registry requirements do not call that out.

Why it was flagged

The package exposes a Node-based CLI and declares a Node runtime requirement, while the registry metadata lists no required binaries or install spec. This is under-declared setup context, not hidden execution.

Skill content
"bins": [{ "name": "stock", "path": "bin/stock.js" }], "requires": { "node": ">=14" }
Recommendation

Confirm Node is available and review the included bin/stock.js before installing or invoking the CLI.

What this means

Sina Finance can see the stock symbols you query through this tool.

Why it was flagged

The tool sends the validated stock code to Sina Finance to retrieve quote data. This external provider call is disclosed and necessary for real-time market data.

Skill content
const url = `https://hq.sinajs.cn/list=${code}`; ... https.get(url, { headers: { 'Referer': 'https://finance.sina.com.cn' } }
Recommendation

Use the skill only when you are comfortable sending queried tickers to Sina Finance; no credentials are required.