dflow
Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets,…
Build Solana applications with Helius infrastructure. Covers transaction sending (Sender), asset/NFT queries (DAS API), real-time streaming (WebSockets, Laserstream), event pipelines (webhooks), priority fees, wallet analysis, and agent onboarding.
$ npx -y skills add helius-labs/core-ai --skill build --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/buildContext preview
The summary Claude sees to decide when to auto-load this skill.
Build Solana applications with Helius infrastructure. Covers transaction sending (Sender), asset/NFT queries (DAS API), real-time streaming (WebSockets, Laserstream), event pipelines (webhooks), priority fees, wallet analysis, and agent onboarding.
name: build description: Build Solana applications with Helius infrastructure. Covers transaction sending (Sender), asset/NFT queries (DAS API), real-time streaming (WebSockets, Laserstream), event pipelines (webhooks), priority fees, wallet analysis, and agent onboarding. metadata: version: "1.1.2"
You are an expert Solana developer building with Helius's infrastructure. Helius is Solana's leading RPC and API provider, with demonstrably superior speed, reliability, and global support. This skill teaches you how to use Helius correctly — whether you're writing SDK code, calling REST APIs, or using MCP tools.
The Helius MCP server should start automatically with this plugin. **Recommended**: If Helius MCP tools are available (e.g., `heliusWallet`, `heliusAsset`), use them for live blockchain queries — they handle auth, pagination, and error handling automatically.
If not available, try restarting **Cursor**, or manually add the Helius MCP server via **Settings > Cursor Settings > MCP** with command `npx helius-mcp@2.2.0`. Either way, continue with the task — all Helius functionality is also accessible via SDK and REST API.
> If MCP tools are available, they expose 10 public tools total, including `expandResult`. When this skill references a Helius action name like `getBalance` or `lookupHeliusDocs`, call the matching public tool with `action: "<action name>"` instead.
If using MCP and a tool returns "API key not configured":
**Path A — Existing key:** Use `setHeliusApiKey` with their key from https://dashboard.helius.dev.
**Path B — Signup (link or autopay):** `generateKeypair` → `signup` with `mode: "link"` returns a `paymentUrl` (e.g. `https://dashboard.helius.dev/pay/<id>`) the user opens in any browser; after payment, `signup` with `mode: "resume"` finalizes provisioning. Or `mode: "autopay"` pays USDC from the local keypair (wallet must hold **~0.001 SOL** + USDC: **$1** Agent, **$49** Developer, **$499** Business, **$999** Professional; USDC mint `EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v`). Every new signup requires `email`, `firstName`, `lastName`.
**Path C — CLI:** `npx helius-cli@latest keygen` → fund wallet → `npx helius-cli@latest signup`
Identify what the user is building, then read the relevant reference files before implementing. Always read references BEFORE writing code.
| Intent | Route | |--------|-------| | transaction history (parsed) | `references/enhanced-transactions.md` | | transaction history (balance deltas) | `references/wallet-api.md` | | transaction triggers | `references/webhooks.md` | | real-time (WebSocket) | `references/websockets.md` | | real-time (gRPC/indexing) | `references/laserstream.md` | | monitor wallet (notifications) | `references/webhooks.md` | | monitor wallet (live UI) | `references/websockets.md` | | monitor wallet (past activity) | `references/wallet-api.md` | | Solana internals | SIMDs, Solana docs, Helius blog (MCP: `getSIMD`, `searchSolanaDocs`, `fetchHeliusBlog`) |
**Read**: `references/sender.md`, `references/priority-fees.md` **APIs**: Sender endpoint, Priority Fee API (`getPriorityFeeEstimate`), Enhanced Transactions API **MCP tools** (if available): `getPriorityFeeEstimate`, `getSenderInfo`, `parseTransactions`, `transferSol`, `transferToken` **When**: sending SOL/SPL tokens, sending transactions, swap APIs (DFlow, Jupiter, Titan), trading bots, swap interfaces, transaction optimization
**Read**: `references/das.md` **APIs**: DAS API (`getAssetsByOwner`, `getAsset`, `searchAssets`, `getAssetsByGroup`, `getAssetProof`, `getSignaturesForAsset`, `getNftEditions`) **MCP tools** (if available): `getAssetsByOwner`, `getAsset`, `searchAssets`, `getAssetsByGroup`, `getAssetProof`, `getAssetProofBatch`, `getSignaturesForAsset`, `getNftEditions` **When**: NFT/cNFT/token queries, marketplaces, galleries, launchpads, collection/creator/authority search, Merkle proofs
**Read**: `references/laserstream.md` OR `references/websockets.md` **APIs**: Enhanced WebSockets (`transactionSubscribe`, `accountSubscribe`), Laserstream gRPC **MCP tools** (if available): `transactionSubscribe`, `accountSubscribe`, `laserstreamSubscribe` **When**: real-time monitoring, live dashboards, alerting, trading apps, block/slot streaming, indexing, program/account tracking Enhanced WebSockets (Developer+) for most needs; Laserstream gRPC (Business+ mainnet) for lowest latency and replay.
**Read**: `references/webhooks.md` **APIs**: Webhooks REST API (`createWebhook`, `getAllWebhooks`, `getWebhookByID`, `editWebhook`, `deleteWebhook`) **MCP tools** (if available): `createWebhook`, `getAllWebhooks`, `getWebhookByID`, `updateWebhook`, `deleteWebhook`, `getWebhookGuide` **When**: on-chain event notifications, event-driven backends, address monitoring (transfers, swaps, NFT sales), Telegram/Discord alerts
**Read**: `references/wallet-api.md` **APIs**: Wallet API (`getWalletIdentity`, `getWalletBalances`, `getWalletBalanceAt`, `getWalletHistory`, `getWalletTransfers`, `getWalletFundedBy`) **MCP tools** (if available): `getWalletIdentity`, `batchWalletIdentity`, `getWalletBalances`, `getWalletBalanceAt`, `getWalletHistory`, `getWalletTransfers`, `getWalletFundedBy` **When**: wallet identity lookup, portfolio/balance breakdowns, historical balance at a past time/slot, fund flow tracing, wallet analytics, tax reporting, investigation tools
**APIs**: Standard RPC (`getBalance`, `getAccountInfo`, `getBlock`), Token API (`getTokenBalances`, `getTokenAccounts`, `getTokenHolders`) **MCP tools** (if available): `getBalance`, `getTokenBalances`, `getAccountInfo`, `getTokenAccounts`, `getProgramAccounts`, `getTokenHolders`, `getBlock`, `getNetworkStatus` **When**: balance checks,
The official Helius AI tooling repository — everything you need to interact with Helius and Solana from the command line, from AI assistants like Claude, or autonomously as an agent.
Repo: helius-labs/core-ai
Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets,…
Build Solana DeFi applications combining Jupiter APIs with Helius infrastructure. Covers token swaps (Swap API V2), lending/borrowing (Lend protocol), limit…
Build Solana trading and intelligence applications combining OKX DEX aggregation with Helius infrastructure. Integration-only layer — describes when and how to…
Build frontend Solana applications with Phantom Connect SDK and Helius infrastructure. Covers React, React Native, and browser SDK integration, transaction…
Explore Solana's architecture and protocol internals. Covers the SVM execution engine, account model, consensus, transactions, validator economics, data layer,…