Nansen Perp Trader Profile

v0.1.0

Deep dive on a Hyperliquid perp trader. Identity, open positions, recent trades, and overall PnL.

0· 177·1 current·1 all-time
byNansen AI@nansen-devops

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for nansen-devops/nansen-perp-trader-profile.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nansen Perp Trader Profile" (nansen-devops/nansen-perp-trader-profile) from ClawHub.
Skill page: https://clawhub.ai/nansen-devops/nansen-perp-trader-profile
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: NANSEN_API_KEY
Required binaries: nansen
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install nansen-perp-trader-profile

ClawHub CLI

Package manager switcher

npx clawhub@latest install nansen-perp-trader-profile
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the requested resources: the skill needs the 'nansen' CLI and NANSEN_API_KEY which are exactly what a Nansen data lookup would require.
Instruction Scope
SKILL.md only runs nansen research/profile/perp commands against a provided address; it does not instruct reading unrelated files, other environment variables, or sending data to unexpected endpoints.
Install Mechanism
Install uses an npm package (nansen-cli) to provide the 'nansen' binary. npm installs are a common way to get CLIs but are moderate risk compared to curated system packages — verify the npm package source/version before installing.
Credentials
Only NANSEN_API_KEY is required and declared as the primary credential, which is proportionate for queries to the Nansen API.
Persistence & Privilege
Skill is not always-enabled, does not request system config paths, and does not attempt to modify other skills or global agent settings.
Assessment
This skill is internally consistent: it simply runs the Nansen CLI using your NANSEN_API_KEY to fetch trader labels, perp positions, trades, and leaderboard data. Before installing, verify the nansen-cli npm package (author, version, registry) to avoid a malicious package, use a least-privilege Nansen API key if possible, and be aware the CLI will make network requests to Nansen's service. Because the skill can be invoked by the agent, only grant the API key if you trust the skill's source or run it in a controlled environment.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsnansen
EnvNANSEN_API_KEY
Primary envNANSEN_API_KEY

Install

Node
Bins: nansen
npm i -g nansen-cli
latestvk976c8q2s556qjev2yfg0yjfss832gks
177downloads
0stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

Perp Trader

Answers: "What is this perp trader doing? What are their positions and track record?"

ADDR=<address>

nansen research profiler labels --address $ADDR --chain ethereum
# → label, category (identity, SM labels)

nansen research profiler perp-positions --address $ADDR
# → asset_positions, margin_summary_account_value_usd, margin_summary_total_margin_used_usd

nansen research profiler perp-trades --address $ADDR --days 7 --limit 20
# → timestamp, token_symbol, side, action (Open/Close/Reduce), price, size, value_usd, closed_pnl, fee_usd

nansen research perp leaderboard --days 7 --limit 50
# → trader_address, total_pnl, roi, account_value (check if ADDR appears)

Cross-reference perp-trades with perp-positions to see if the trader is scaling in/out. Leaderboard shows relative standing.

Comments

Loading comments...