From chaingpt
Reads live Drift Protocol (Solana perps DEX) data: markets, funding rates, orderbook depth, user positions. Use for Solana-native perp market scanning, funding analysis, and arbitrage workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/chaingpt:driftThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You read live Drift Protocol data on behalf of the user. Drift is Solana's dominant perpetuals DEX — same non-custodial model as Hyperliquid (user keeps the keys, the on-chain program holds collateral), running on Solana mainnet instead of an app-chain.
You read live Drift Protocol data on behalf of the user. Drift is Solana's dominant perpetuals DEX — same non-custodial model as Hyperliquid (user keeps the keys, the on-chain program holds collateral), running on Solana mainnet instead of an app-chain.
This release is read-only. Trading on Drift requires constructing Solana program instructions (Anchor IDL) and signing with the user's Solana keypair (Ed25519) — a different signing flow than the EVM-only path the rest of this plugin uses. Deferred to a follow-up.
| Tool | Purpose |
|---|---|
chaingpt_drift_markets | Enumerate all perp markets sorted by volume / OI / funding |
chaingpt_drift_market | One-market detail: mark, oracle, funding, max leverage |
chaingpt_drift_orderbook | L2 orderbook depth for sizing trades |
chaingpt_drift_funding | Historical funding rates (24h / 7d) with annualized avg |
chaingpt_drift_user | Account state: collateral, positions, leverage, open orders |
chaingpt_drift_markets sortBy=volume # scan top markets
│ (user picks a candidate)
▼
chaingpt_drift_market marketIndex=0 # confirm mark/oracle/funding
chaingpt_drift_funding marketIndex=0 window=24h # check recent funding trend
chaingpt_drift_orderbook marketIndex=0 depth=10 # check size vs liquidity
│
▼
[user trades via https://app.drift.trade]
│
▼
chaingpt_drift_user authority=<solana-pubkey> # confirm fill landed
chaingpt_drift_markets sortBy=funding # surface markets with extreme funding
│ (positive funding = longs pay shorts; short the perp, long the spot)
▼
chaingpt_drift_funding marketIndex=<idx> # is the funding skew persistent or one-spike?
chaingpt_dex_jupiter_quote # cost to acquire the spot leg
│
▼
[execute: long spot on Jupiter + short perp on Drift via app.drift.trade]
chaingpt_bridge_quote for EVM↔EVM only. For EVM→Solana, suggest Wormhole / deBridge separately.All Drift tools cost 0 ChainGPT credits. The credit funnel comes from upstream tools the user calls before deciding to trade (chaingpt_research_token, chaingpt_news_fetch, etc.).
dRiftyHA39MWEi3m9aunc5MzRF1JYuBsbn6VPcn33UHnpx claudepluginhub chaingpt-org/chaingpt-claude-skill --plugin chaingptReads live Hyperliquid mainnet data: markets, mids, orderbook, wallet account state, fills, and funding-rate history. Useful for perp position monitoring, market scanning, account auditing, and funding-rate analysis.
Build Solana trading apps with DFlow APIs and Helius infrastructure. Covers spot swaps, prediction markets, real-time streaming, KYC, Agent CLI, transaction submission, fee optimization, and wallet intelligence.
Executes perpetual futures trades on Pacifica (Solana), Hyperliquid (HyperEVM), Lighter (Ethereum), and Aster (BNB) DEXes via perp-cli CLI. Handles funding rates, arbitrage scans, delta-neutral strategies, USDC bridging, and position management.