From buzz-crypto-bd
Performs wallet forensics and authority checks on Solana using Helius RPC endpoints. Useful for analyzing deployer wallets and token mint/freeze authorities.
How this skill is triggered — by the user, by Claude, or both
Slash command
/buzz-crypto-bd:helius-mcpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- wallet-agent (L2): wallet forensics
HELIUS_API_KEY env var — e4b461c1-9cf2-420e-b6dd-7a837a074355
Use these instead of raw RPC chaining:
POST https://mainnet.helius-rpc.com/?api-key=${HELIUS_API_KEY} { "jsonrpc": "2.0", "id": "1", "method": "getAssetsByOwner", "params": { "ownerAddress": "<deployer_wallet>", "page": 1, "limit": 20, "displayOptions": { "showFungible": true } } } → Returns: full token holdings with metadata
POST https://mainnet.helius-rpc.com/?api-key=${HELIUS_API_KEY} { "jsonrpc": "2.0", "id": "1", "method": "getTransactionsForAddress", "params": { "address": "<deployer_wallet>", "limit": 50 } } → Returns: parsed tx history, rug patterns, previous deploys → NOTE: Requires Developer plan. If 403, fall back to getSignaturesForAddress.
POST https://mainnet.helius-rpc.com/?api-key=${HELIUS_API_KEY} { "jsonrpc": "2.0", "id": "1", "method": "getAsset", "params": { "id": "<contract_address>" } } → Check: authorities.mint (should be null), authorities.freeze (should be null) → Scoring: null mint + null freeze = +5 bonus. Active = instant kill.
npx claudepluginhub buzzbysolcex/buzz-bd-agentProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.