Two-step flow: quote then execute. Trades are irreversible once on-chain.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionnansen-tradingExecute the skills CLI command in your project's root directory to begin installation:
Fetches nansen-trading from nansen-ai/nansen-cli and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate nansen-trading. Access via /nansen-trading in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
114
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
114
stars
Two-step flow: quote then execute. Trades are irreversible once on-chain.
Prerequisite: You need a wallet first. Run nansen wallet create before trading.
nansen trade quote \
--chain solana \
--from SOL \
--to USDC \
--amount 1000000000
Symbols resolve automatically: SOL, ETH, USDC, USDT, WETH. Raw addresses also work.
nansen trade execute --quote <quote-id>
Bridge tokens between Solana and Base using --to-chain:
nansen trade quote \
--chain base \
--to-chain solana \
--from USDC \
--to USDC \
--amount 1000000
For Solana↔Base bridges, the destination wallet address is auto-derived from your wallet (which stores both EVM and Solana keys). Override with --to-wallet <address> if needed.
Note: you need gas on the source chain to submit the initial transaction (e.g. SOL for Solana→Base, ETH for Base→Solana).
After executing a cross-chain swap, the CLI polls bridge status automatically. To check manually:
nansen trade bridge-status --tx-hash <hash> --from-chain base --to-chain solana
# Pipe quote ID directly into execute
quote_id=$(nansen trade quote --chain solana --from SOL --to USDC --amount 1000000000 2>&1 | grep "Quote ID:" | awk '{print $NF}')
nansen trade execute --quote "$quote_id"
| Token | Chain | Address |
|---|---|---|
| SOL | Solana | So11111111111111111111111111111111111111112 |
| USDC | Solana | EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v |
| ETH | Base | 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee |
| USDC | Base | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 |
By default, --amount accepts integer base units (lamports, wei, etc). Use --amount-unit token for human-readable token amounts, or --amount-unit usd to specify a USD value — the CLI resolves price and decimals automatically.
# Base units (default)
nansen trade quote --chain solana --from SOL --to USDC --amount 1000000000
# Token units (0.5 SOL = 500000000 lamports, resolved automatically)
nansen trade quote --chain solana --from SOL --to USDC --amount 0.5 --amount-unit token
# USD amount ($50 worth of SOL, price resolved via Nansen search API)
nansen trade quote --chain solana --from SOL --to USDC --amount 50 --amount-unit usd
| Token | Decimals | 1 token = |
|---|---|---|
| SOL | 9 | 1000000000 |
| ETH | 18 | 1000000000000000000 |
| USDC | 6 | 1000000 |
If the user says "$20 worth of X", use --amount-unit usd directly — no manual conversion needed. The CLI fetches the current price and converts for you.
trade quote flags| Flag | Purpose |
|---|---|
--chain |
Source chain: solana or base |
--to-chain |
Destination chain for cross-chain swap (omit for same-chain) |
--from |
Source token (symbol or address) |
--to |
Destination token (symbol or address, resolved against destination chain) |
--amount |
Amount in base units (integer), or token/USD units with --amount-unit |
--amount-unit |
token for token units (e.g. 0.5 SOL), usd for USD (e.g. 50), base = default |
--wallet |
Wallet name (default: default wallet) |
--to-wallet |
Destination wallet address (auto-derived for cross-chain if omitted) |
--slippage |
Slippage tolerance as decimal (e.g. 0.03) |
--auto-slippage |
Enable auto slippage calculation |
--max-auto-slippage |
Max auto slippage when --auto-slippage is enabled |
--swap-mode |
exactIn (default) or exactOut |
trade execute flags| Flag | Purpose |
|---|---|
--quote |
Quote ID from trade quote |
--wallet |
Wallet name (default: default wallet) |
--quote-index |
Pin a specific quote by index (0-based) when multiple quotes were returned |
--no-simulate |
Skip pre-broadcast simulation |
trade bridge-status flags| Flag | Purpose |
|---|---|
--tx-hash |
Source tx hash |
--from-chain |
Source chain (for bridge-status) |
--to-chain |
Destination chain (for bridge-status) |
| Var | Purpose |
|---|---|
NANSEN_WALLET_PASSWORD |
Required for trade execute. Wallet encryption password — persisted in ~/.nansen/.env. Source before executing: source ~/.nansen/.env && nansen trade execute ... |
NANSEN_API_KEY |
API key (also set via nansen login) |
Agents: Never hold a wallet password only in session memory. If
NANSEN_WALLET_PASSWORDis not in~/.nansen/.env, follow the setup flow in the nansen-wallet-manager skill Password Policy to generate and persist one before proceeding.
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
huynguyen03dev/xauusd-trading
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
ailabs-393/ai-labs-claude-skills
I recommend nansen-trading for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: nansen-trading is focused, and the summary matches what you get after install.
nansen-trading reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: nansen-trading is focused, and the summary matches what you get after install.
I recommend nansen-trading for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added nansen-trading from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
We added nansen-trading from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: nansen-trading is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: nansen-trading is the kind of skill you can hand to a new teammate without a long onboarding doc.
nansen-trading reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 63