Back to skill
v1.0.2

Funding Rate Scanner

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 6:01 AM.

Analysis

This appears to be a simple public Binance market-data scanner that does not request credentials or place trades, though its leveraged trading suggestions should be treated cautiously.

GuidanceBefore installing, know that this runs Node.js scripts that call Binance public endpoints and print funding-rate analysis. It does not need an API key or place trades, but leveraged crypto trading is high-risk, so independently verify the data and do not let another tool execute trades without explicit approval.

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.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
scripts/scan.js
const data = await fetch('https://fapi.binance.com/fapi/v1/premiumIndex');

The script makes an outbound request to Binance's public Futures API. This is disclosed by the skill's Binance funding-rate purpose and does not involve credentials or account actions.

User impactRunning the skill contacts Binance and uses returned market data to produce opportunities; it does not trade or access an exchange account.
RecommendationUse it only if you are comfortable with external market-data requests, and verify results before acting on them.
Human-Agent Trust Exploitation
SeverityLowConfidenceMediumStatusNote
SKILL.md
Annual(5x): 2071% ... Open long position on high negative rate coin ... High leverage = high risk

The skill presents leveraged return calculations and a trading strategy, while also including risk warnings. This is purpose-aligned but could be over-trusted by a user or downstream agent.

User impactA user could make risky leveraged trading decisions if they treat the output as guaranteed arbitrage or financial advice.
RecommendationTreat the output as informational market data. Require explicit human review before any separate tool or exchange account is used to trade.
Agentic Supply Chain Vulnerabilities
SeverityInfoConfidenceHighStatusNote
metadata
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.

The SKILL.md usage relies on `node scripts/...`, so the metadata under-declares the Node.js runtime requirement. There is no remote installer or dependency download, making this a minor transparency issue.

User impactThe skill may not run unless Node.js is available, despite the metadata saying no binaries are required.
RecommendationConfirm Node.js is installed before use and prefer artifacts whose metadata accurately declares runtime requirements.