Skills are model-agnostic instruction sets that teach AI assistants how to route your requests to the right MCP tools and reference files. They go beyond raw tool access — they include routing logic, correct SDK patterns, and rules that prevent common mistakes like hardcoded fees, wrong endpoints, or missing Sender tips. Skills work with any AI platform — Claude Code, Codex, OpenAI API, Claude API, Cursor, ChatGPT, and more. Each skill ships with pre-built system prompt variants so you can drop them into whatever tool you use.Documentation Index
Fetch the complete documentation index at: https://helius-feat-shred-subscriptions.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Available Skills
Build
Core Solana development — DAS, Sender, WebSockets, LaserStream, Webhooks, Wallet API, and more
Phantom
Frontend dApp development — Phantom Connect SDK (React, React Native, browser), token gating, payments
Jupiter
DeFi applications — token swaps, lending, limit orders, DCA, token/price data
DFlow
Trading applications — spot swaps, prediction markets, real-time streaming, Proof KYC
OKX
Trading and intelligence — OKX DEX aggregation, smart money signals, meme token analysis
SVM
Solana protocol internals — SVM execution, consensus, account model, validator economics
How Skills Work
Skills follow a 3-layer prompt architecture:| Layer | What | Where |
|---|---|---|
| A: Harness | Agent/runtime-specific behavior and tool rules | Built-in (Claude Code), AGENTS.md (Codex), preamble in prompt variants (API) |
| B: Skills | Canonical, reusable, model-agnostic procedures | SKILL.md files + references/ directory |
| C: Task | User request + dynamic context | Provided at runtime by each platform |
- Routing logic — maps your request to the correct MCP tools and reference files
- Reference files — deep documentation for each Helius product the AI reads before writing code
- Rules — prevents common mistakes (e.g., hardcoded priority fees, wrong RPC endpoints, missing error handling)
Using Skills Across Platforms
Each skill ships with three pre-built prompt variants in itsprompts/ directory:
| File | Use Case | Format |
|---|---|---|
openai.developer.md | OpenAI Responses / Chat Completions API | Layer A preamble + skill content with === BEGIN SKILL === delimiters |
claude.system.md | Claude API system prompt | Layer A preamble + skill content with delimiters |
full.md | Cursor Rules, ChatGPT custom instructions, other tools | All reference files inlined, no external dependencies |
- Repo:
.agents/skills/<skill>/prompts/ - npm package:
helius-mcp/system-prompts/<skill>/
- Vercel Skills CLI
- Claude Code Plugin
- Claude Code Standalone
- Codex CLI
- OpenAI API
- Claude API
- Cursor / ChatGPT
Install skills directly into your AI coding agent using the Vercel Skills CLI. Works with Claude Code, Cursor, Copilot, Codex, and more.
| Skill | Install Command |
|---|---|
| build — Core Solana dev (Sender, DAS, WebSockets, LaserStream, webhooks) | npx skills add helius-labs/core-ai --skill build |
| phantom — Frontend dApps (Phantom Connect, React, token gating) | npx skills add helius-labs/core-ai --skill phantom |
| jupiter — DeFi apps (swaps, lending, limit orders, DCA) | npx skills add helius-labs/core-ai --skill jupiter |
| dflow — Trading apps (swaps, prediction markets, streaming, KYC) | npx skills add helius-labs/core-ai --skill dflow |
| okx — Trading and intelligence (OKX DEX, smart money, meme scanner) | npx skills add helius-labs/core-ai --skill okx |
| svm — Protocol internals (SVM engine, consensus, account model) | npx skills add helius-labs/core-ai --skill svm |
Prerequisites
All skills require the Helius MCP server to be running (or the equivalent tools configured in your agent framework). The DFlow skill additionally requires the DFlow MCP server. The Phantom skill additionally requires a Phantom Portal account for embedded wallets. The Jupiter skill requires a Jupiter API key. The OKX skill requires the OKX skill library and theonchainos CLI.