Fetches and analyzes trending meme coin data from DexScreener, including price movements, volume, and risk assessment across multiple timeframes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kukapay-crypto-skills:meme-scoutThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides workflows for finding and analyzing trending meme coins on decentralized exchanges.
This skill provides workflows for finding and analyzing trending meme coins on decentralized exchanges.
Example command for top 10 trending:
curl -s "https://dexscreener.com/?rankBy=trendingScoreH24&order=desc" | sed -n 's/.*window\.__SERVER_DATA\s*=\s*\(.*\);.*/\1/p' | node -e "
const fs = require('fs');
const input = fs.readFileSync(0, 'utf-8').trim();
const code = 'data = ' + input;
const vm = require('vm');
const sandbox = {data: null, URL: URL, Date: Date, undefined: undefined};
vm.runInNewContext(code, sandbox);
const pairs = sandbox.data.route.data.dexScreenerData.pairs.slice(0,10);
pairs.forEach(p => console.log(\`\${p.baseToken.name} | \${p.chainId} | $\${p.priceUsd} | \${p.priceChange.h24}% | \${p.baseToken.address}\`));
"
See references/ for detailed guides:
npx claudepluginhub kukapay/crypto-skillsDiscovers memecoins and assesses risk via EmblemAI across Solana, Base, and Hedera. Useful for finding new tokens, rug-pull detection, and smart money tracking.
Tracks new token launches on DEXes across chains like Ethereum and BSC with risk analysis for mint functions, proxies, blacklists, and contract verification.
Tracks real-time meme token lifecycle on launchpads (Pump.fun, Four.meme) with filters for dev behavior, age, market cap, and detects AI-driven hot market narratives with associated tokens.