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>/
- 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 |
| dflow — Trading apps (swaps, prediction markets, streaming, KYC) | npx skills add helius-labs/core-ai --skill dflow |
| phantom — Frontend dApps (Phantom Connect, React, token gating) | npx skills add helius-labs/core-ai --skill phantom |
| svm — Protocol internals (SVM engine, consensus, account model) | npx skills add helius-labs/core-ai --skill svm |