Claude Code:
/helius:build (via plugin) or auto-invoked (standalone). Codex: $helius (auto-discovered from .agents/skills/). API / Cursor / ChatGPT: Use the pre-built system prompt variants.What It Covers
The Build skill routes the AI to the correct Helius tools and documentation for each task:| Domain | Helius Products | MCP Tools Used |
|---|---|---|
| Transaction Sending | Sender, Priority Fee API | getPriorityFeeEstimate, getSenderInfo, transferSol, transferToken |
| Asset & NFT Queries | DAS API | getAssetsByOwner, getAsset, searchAssets, getAssetsByGroup, getAssetProof |
| Real-Time Streaming | Enhanced WebSockets, LaserStream | transactionSubscribe, accountSubscribe, laserstreamSubscribe |
| Event Pipelines | Webhooks | createWebhook, getAllWebhooks, updateWebhook, deleteWebhook |
| Wallet Analysis | Wallet API | getWalletIdentity, getWalletBalances, getWalletHistory, getWalletTransfers |
| Transaction History | Enhanced Transactions | parseTransactions |
| Onboarding | CLI, Auth | generateKeypair, agenticSignup, setHeliusApiKey |
| Solana Knowledge | SIMDs, Source Code, Blog | getSIMD, readSolanaSourceFile, fetchHeliusBlog |
Prerequisites
The Build skill requires the Helius MCP server (or the equivalent tools configured in your agent framework). If you install via the Claude Code plugin, the MCP server starts automatically. For standalone installation, add it manually:Standalone Installation
If you want the Build skill without the full plugin, install it directly:Run the install script
~/.claude/skills/helius/.Options:./install.sh --project— install to the current project (.claude/skills/helius/)./install.sh --path /custom/path— install to a custom directory
Set your API key
setHeliusApiKey MCP tool inside Claude Code. If you need a new account, see Helius CLI or use the autonomous signup flow via MCP tools.Example Prompts
Once installed, ask in plain English:- “Who funded wallet
7jfe92...?” - “What NFTs does this wallet own?”
- “Create a tax reporting CLI so I can fetch my wallet’s activity and view it as a CSV file”
- “Set up a webhook to monitor my wallet for incoming transfers”
- “Parse this transaction:
5abc...” - “Build a portfolio tracker with real-time updates for my wallet”
- “Send 1 SOL to
Gh9ZwEm...”
What’s Included
The skill installs two components:SKILL.md— Routing logic, rules, and expert context that guide the AI’s behaviorprompts/— Pre-built system prompt variants (openai.developer.md,claude.system.md,full.md) — see platform setupreferences/— Deep documentation files for each Helius product:das.md— Digital Asset Standard APIsender.md— Transaction sending servicepriority-fees.md— Fee estimation strategieswebhooks.md— Event monitoringwebsockets.md— WebSocket subscriptionslaserstream.md— gRPC streamingwallet-api.md— Wallet analysis and identityenhanced-transactions.md— Transaction history and parsingonboarding.md— Account setup and signup flow