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
DFlow
Trading applications — spot swaps, prediction markets, real-time streaming, Proof KYC
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>/
- Claude Code Plugin
- Claude Code Standalone
- Codex CLI
- OpenAI API
- Claude API
- Cursor / ChatGPT
The Helius plugin bundles all skills + MCP servers in one install:Skills are invoked with
/helius:build, /helius:phantom, /helius:dflow, or /helius:svm.