
Nansen Exit Signals
- 347 installs
- 127 repo stars
- Updated August 4, 2026
- nansen-ai/nansen-cli
nansen-exit-signals is a Claude agent skill that surfaces Nansen-derived exit signals via nansen CLI so developers and traders flag take-profit, stop-loss, or rotation cues for crypto wallet and token positions.
About
nansen-exit-signals is a skill from nansen-ai/nansen-cli that answers whether smart money is exiting a token you hold. It runs nansen research token flow-intelligence with a token address and chain (e.g., ethereum), returning net_flow_usd broken down by label: smart_trader, whale, exchange, and fresh_wallets—negative values indicate selling pressure. The skill requires NANSEN_API_KEY and the nansen CLI installed via npm. Developers building crypto alert bots, portfolio agents, or trading dashboards reach for nansen-exit-signals when they need programmatic exit cues based on labeled on-chain flows rather than price alone. Bash access to nansen:* commands is the execution surface.
- Exit timing
- Signal alerts
- Position monitoring
- Crypto trading
- Nansen analytics
Nansen Exit Signals by the numbers
- 347 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #320 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nansen-ai/nansen-cli --skill nansen-exit-signalsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 347 |
|---|---|
| repo stars | ★ 127 |
| Last updated | August 4, 2026 |
| Repository | nansen-ai/nansen-cli ↗ |
How do you detect smart money exiting a token?
Surface Nansen-derived exit signals so agents flag take-profit, stop-loss, or rotation cues for crypto wallet and token positions.
Who is it for?
Crypto developers building position-monitoring agents who need Nansen-labeled flow intelligence to flag exit, stop-loss, or rotation cues.
Skip if: Traditional equity portfolios, developers without a Nansen API key, or fundamental token analysis unrelated to on-chain labeled flows.
When should I use this skill?
The user asks if smart money is exiting a held token, wants net flow by wallet label, or needs exit signal data for a crypto position.
What you get
Net flow USD breakdown by smart_trader, whale, exchange, and fresh_wallets labels with sell-side exit signal interpretation.
- net flow USD by label
- exit signal interpretation
Files
Exit Signal
Answers: "Is smart money exiting a token I hold? Should I be worried?"
TOKEN=<address> CHAIN=ethereum
nansen research token flow-intelligence --token $TOKEN --chain $CHAIN
# → net_flow_usd per label: smart_trader, whale, exchange, fresh_wallets (negative = selling)
nansen research token who-bought-sold --token $TOKEN --chain $CHAIN --limit 20
# → address, address_label, bought/sold_volume_usd, trade_volume_usd
nansen research smart-money netflow --chain $CHAIN --limit 10
# → token_symbol, net_flow_1h/24h/7d/30d_usd, trader_count
nansen research token dex-trades --token $TOKEN --chain $CHAIN --limit 20
# → block_timestamp, action (BUY/SELL), trader_address_label, estimated_value_usdRed flag: negative smart_trader_net_flow_usd + Smart Trader labels in who-bought-sold sellers = exit signal.
Related skills
How it compares
Pick nansen-exit-signals over raw DEX price feeds when labeled smart-money flow direction matters more than spot price alone.
FAQ
What Nansen CLI command does nansen-exit-signals use?
nansen-exit-signals runs nansen research token flow-intelligence with --token and --chain flags. Output includes net_flow_usd per label such as smart_trader, whale, exchange, and fresh_wallets.
What credentials does nansen-exit-signals require?
nansen-exit-signals requires NANSEN_API_KEY in the environment and the nansen CLI binary installed via npm package nansen-cli. Bash access to nansen:* commands is allowed.