Crypto & Stock Market Data Pro

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: guanjia-crypto-market-data Version: 1.0.0 The skill provides a suite of tools for retrieving cryptocurrency and stock market data via a centralized API (api.igent.net). The implementation uses standard Node.js built-in modules (https, fs, path) with no external dependencies, and the logic for token management and data retrieval in scripts like api_client.js and get_crypto_price.js is transparent and consistent with the stated functionality.

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.

What this means

Your market lookup terms are sent to the skill's external market-data provider.

Why it was flagged

All tools make GET requests to an external provider, sending user-supplied market queries such as tickers, coin IDs, and search terms. This is disclosed and purpose-aligned, but it is a data boundary users should notice.

Skill content
const BASE_URL = process.env.API_BASE_URL || 'https://api.igent.net/api'; ... const { status, body } = await _httpRequest(parsed.toString(), headers);
Recommendation

Use this for public market identifiers and avoid sending private portfolio or account information unless you trust the provider.

What this means

A temporary service token may remain on disk after use.

Why it was flagged

The client automatically obtains a provider token, stores it locally, and reuses it as an API authentication header. This matches SKILL.md's disclosure and does not use user credentials, but it creates a persistent local token file.

Skill content
const TOKEN_FILE = path.join(__dirname, '.token'); ... fs.writeFileSync(TOKEN_FILE, JSON.stringify(data)); ... 'X-API-Token': token
Recommendation

If you stop using the skill or want to reset access, delete the generated scripts/.token file.

What this means

The package identity/version may be confusing when comparing the installed artifact to the registry listing.

Why it was flagged

The bundled metadata differs from the registry-provided owner, slug, and version. This does not indicate malicious runtime behavior in the provided code, but it is a provenance inconsistency.

Skill content
"ownerId": "kn7514q7g1cz1cjgh8aryp988980qjsk", "slug": "crypto-market-data", "version": "1.0.2"
Recommendation

Verify the publisher and version if provenance matters for your environment.