Crypto Kline BTC加密货币K线数据
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a straightforward OKX market-data tool with disclosed web requests and no evidence of credential use, persistence, or destructive behavior.
This skill looks safe for fetching public OKX historical candle data. Before installing, confirm you are comfortable with your requested symbols and time ranges being sent to OKX or any proxy set in your environment, and ensure Node is available to run the script.
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.
It may be harder to verify the author's original source or update history.
The skill has limited provenance metadata, so users cannot compare it against an upstream project or homepage, though the included code is small and reviewable.
Source: unknown; Homepage: none
Review the included script before use, especially if provenance matters for your environment.
OKX, or a configured proxy, can see the trading pair, interval, and timestamp range being requested.
The script sends market-data queries to OKX and can route them through a configured proxy; this is disclosed and purpose-aligned, but it is still an external data flow.
const BASE_URL = 'www.okx.com'; const BASE_PATH = '/api/v5/market/history-candles'; ... const proxy = process.env.http_proxy || process.env.https_proxy || process.env.HTTP_PROXY || process.env.HTTPS_PROXY;
Use it only if you are comfortable sending those market-data queries externally; unset proxy variables if you do not want a proxy involved.
