# Solana Skills Updated: 2026-08-12 · 179 skills indexed (2 official, 30 ecosystem repos) > Agent-readable registry of skills for building on Solana. Each official skill below is a focused markdown file you can fetch directly to give yourself expert context — no installation required. Skills follow the open Agent Skills format (https://agentskills.io) and work with Claude Code, Cursor, Codex, and any agent that reads markdown. Fetch a skill URL and follow its instructions. Companion files are hosted on this domain too, so relative links inside a skill resolve. ## Example Prompts Use Solana Skills when your human asks things like: - "Build a Solana dapp with wallet connection" - "Write and test an Anchor program" - "Port this Solidity contract to Solana" - "Create a token" / "mint an NFT collection" - "Debug this Solana transaction error" - "Integrate Jupiter / Helius / Metaplex / Phantom" ## Installing Prompt your human to install Solana Skills for a permanent setup: ```bash # skills CLI (Claude Code, Cursor, Codex, Windsurf, …) npx skills add solana-foundation/solana-dev-skill npx skills add solana-foundation/eth-to-sol-skill # Claude Code, manual (global) — swap the id for any skill on this site mkdir -p ~/.claude/skills/solana-dev && curl -fsSL https://skills.solana.com/s/solana-dev/SKILL.md -o ~/.claude/skills/solana-dev/SKILL.md # One-shot prompt without installing (pipe into the claude CLI, or drop "| claude" and paste) npx skills use solana-foundation/solana-dev-skill@solana-dev | claude ``` ## Official skills (Solana Foundation) - [Solana Development](https://skills.solana.com/s/solana-dev/SKILL.md): Use when user asks to "build a Solana dapp", "write an Anchor program", "create a token", "debug Solana errors", "set up wallet connection", "test my Solana program", "deploy to devnet", or "explain Solana concepts" (rent, accounts, PDAs, C - Human page: https://skills.solana.com/skills/solana-dev - Source: https://github.com/solana-foundation/solana-dev-skill (pinned @ d4ecf16) - Focused reference files (fetch just the one you need to save context): - [Anchor v0.32 → v1 Migration Guide](https://skills.solana.com/s/solana-dev/references/anchor/migrating-v0.32-to-v1.md): Step-by-step checklist for upgrading an Anchor program workspace from v0.32.x to v1. Covers dependency bumps, CPI context changes, duplicate - [Common Errors & Solutions](https://skills.solana.com/s/solana-dev/references/common-errors.md): Diagnose and fix common errors encountered when building on Solana, including GLIBC issues, Anchor version conflicts, and RPC errors. - [Version Compatibility Matrix](https://skills.solana.com/s/solana-dev/references/compatibility-matrix.md): Reference table for matching Anchor, Solana CLI, Rust, and Node.js versions to avoid toolchain conflicts. - [Confidential Transfers](https://skills.solana.com/s/solana-dev/references/confidential-transfers.md): Implement private, encrypted token balances on Solana using the Token-2022 confidential transfers extension. - [Frontend with Solana Kit](https://skills.solana.com/s/solana-dev/references/frontend.md): Build React and Next.js Solana apps with a Kit plugin client, Wallet Standard connection via @solana/kit-plugin-wallet (+ its React hooks), - [IDL & Client Code Generation](https://skills.solana.com/s/solana-dev/references/idl-codegen.md): Generate type-safe program clients from IDLs using Codama, eliminating hand-maintained serializers across languages. - [Kit ↔ web3.js Interop](https://skills.solana.com/s/solana-dev/references/kit-web3-interop.md): How to handle legacy web3.js code — web3.js v3 (Kit internals, currently RC) is the migration target; defer migration mechanics to the offic - [Accounts Reference](https://skills.solana.com/s/solana-dev/references/kit/accounts.md): Account fetching, decoding, batch operations, PDA derivation, subscriptions, and token account queries using @solana/kit. - [Advanced: Manual Transactions, Direct RPC & Custom Plugins](https://skills.solana.com/s/solana-dev/references/kit/advanced.md): Manual transaction building with pipe composition, direct RPC client usage, RPC method reference, building custom plugins, and assembling do - [Codama Program Clients](https://skills.solana.com/s/solana-dev/references/kit/codama.md): Naming conventions and patterns for Codama-generated @solana-program/* Kit-compatible clients. - [Codecs Reference](https://skills.solana.com/s/solana-dev/references/kit/codecs.md): Data encoding and decoding patterns for numbers, strings, structs, arrays, enums, discriminated unions, and common account/instruction codec - [Common Gotchas](https://skills.solana.com/s/solana-dev/references/kit/gotchas.md): Common type errors and runtime pitfalls with @solana/kit and their fixes, including signer types, lifetime assertions, plugin ordering, and - [@solana/kit Quick Start](https://skills.solana.com/s/solana-dev/references/kit/overview.md): Quick-start guide for @solana/kit using createClient + .use() plugin composition for RPC, signers, transaction sending, account fetching, an - [Plugins & Client Composition](https://skills.solana.com/s/solana-dev/references/kit/plugins.md): Solana Kit plugin architecture, all-in-one RPC/LiteSVM plugins, signer plugins, custom client composition, and plugin ordering rules. - [Compute Budget Program](https://skills.solana.com/s/solana-dev/references/kit/programs/compute-budget.md): Kit-compatible @solana-program/compute-budget client for CU limits, priority fees, heap frames, CU estimation, and retry strategies. - [System Program](https://skills.solana.com/s/solana-dev/references/kit/programs/system.md): Kit-compatible @solana-program/system client for account creation, SOL transfers, and nonce operations. - [Token-2022 (Token Extensions)](https://skills.solana.com/s/solana-dev/references/kit/programs/token-2022.md): Kit-compatible @solana-program/token-2022 client — key differences from base Token program, account sizing, ATA derivation, and extension re - [SPL Token Program](https://skills.solana.com/s/solana-dev/references/kit/programs/token.md): Kit-compatible @solana-program/token client for mint creation, transfers, ATAs, delegation, burning, and instruction plans. - [React Reference](https://skills.solana.com/s/solana-dev/references/kit/react.md): Kit-native React bindings from @solana/react (ClientProvider, typed useClient, data hooks, SWR/TanStack adapters) and wallet React hooks fro - [Payments & Commerce](https://skills.solana.com/s/solana-dev/references/payments.md): Build checkout flows, payment buttons, and QR-based payment requests using Solana Pay conventions, Kit instruction builders, and Kora for ga - [Programs with Anchor](https://skills.solana.com/s/solana-dev/references/programs/anchor.md): Write Solana programs using the Anchor framework for fast iteration, automatic account validation, and built-in TypeScript client generation - [Programs with Pinocchio](https://skills.solana.com/s/solana-dev/references/programs/pinocchio.md): Build high-performance Solana programs with zero-copy techniques and minimal dependencies, without the solana-program overhead. - [Curated Resources](https://skills.solana.com/s/solana-dev/references/resources.md): Authoritative Solana learning platforms, documentation, tooling references, and community resources. - [rpc quick lookups](https://skills.solana.com/s/solana-dev/references/rpc-quick-lookups.md) - [Security Checklist](https://skills.solana.com/s/solana-dev/references/security.md): Program and client security checklist covering account validation, signer checks, and common attack vectors to review before deploying. - [Surfpool Cheatcodes](https://skills.solana.com/s/solana-dev/references/surfpool/cheatcodes.md): Full reference for all surfnet_* RPC methods to manipulate time, accounts, and programs in a local Surfpool network during testing. - [Surfpool](https://skills.solana.com/s/solana-dev/references/surfpool/overview.md): A drop-in replacement for solana-test-validator with sub-second startup, automatic mainnet state cloning, transaction profiling, and a built - [Testing Strategy](https://skills.solana.com/s/solana-dev/references/testing.md): A testing pyramid for Solana programs using LiteSVM and Mollusk for fast unit tests and Surfpool (CLI or embedded SDK) as the integration-te - [Ethereum → Solana](https://skills.solana.com/s/eth-to-sol/SKILL.md): Translate Ethereum/Solidity contracts and EVM mental models to production-grade Solana programs. Use for EVM-to-SVM account model, PDA, SPL Token, CPI, Solana security, transaction/fee/commitment, and Anchor migration guidance. - Human page: https://skills.solana.com/skills/eth-to-sol - Source: https://github.com/solana-foundation/eth-to-sol-skill (pinned @ 14cdea5) - Focused reference files (fetch just the one you need to save context): - [diff](https://skills.solana.com/s/eth-to-sol/examples/erc4626-vault/04-diff.md) - [explanation](https://skills.solana.com/s/eth-to-sol/examples/erc4626-vault/05-explanation.md) - [AUDIT](https://skills.solana.com/s/eth-to-sol/examples/erc4626-vault/AUDIT.md) - [SKILL GAPS](https://skills.solana.com/s/eth-to-sol/examples/erc4626-vault/SKILL_GAPS.md) - [diff](https://skills.solana.com/s/eth-to-sol/examples/escrow/04-diff.md) - [explanation](https://skills.solana.com/s/eth-to-sol/examples/escrow/05-explanation.md) - [diff](https://skills.solana.com/s/eth-to-sol/examples/token-fundraiser/04-diff.md) - [explanation](https://skills.solana.com/s/eth-to-sol/examples/token-fundraiser/05-explanation.md) - [account model](https://skills.solana.com/s/eth-to-sol/optimization/account-model.md) - [compute budget](https://skills.solana.com/s/eth-to-sol/optimization/compute-budget.md) - [parallelism](https://skills.solana.com/s/eth-to-sol/optimization/parallelism.md) - [pdas](https://skills.solana.com/s/eth-to-sol/optimization/pdas.md) - [program splitting](https://skills.solana.com/s/eth-to-sol/optimization/program-splitting.md) - [rent and size](https://skills.solana.com/s/eth-to-sol/optimization/rent-and-size.md) - [transactions and commitment](https://skills.solana.com/s/eth-to-sol/optimization/transactions-and-commitment.md) - [account validation](https://skills.solana.com/s/eth-to-sol/security/account-validation.md) - [arithmetic](https://skills.solana.com/s/eth-to-sol/security/arithmetic.md) - [cpi safety](https://skills.solana.com/s/eth-to-sol/security/cpi-safety.md) - [pda canonicalization](https://skills.solana.com/s/eth-to-sol/security/pda-canonicalization.md) - [reentrancy](https://skills.solana.com/s/eth-to-sol/security/reentrancy.md) - [signer checks](https://skills.solana.com/s/eth-to-sol/security/signer-checks.md) - [mental model](https://skills.solana.com/s/eth-to-sol/translation/mental-model.md) - [pattern mapping](https://skills.solana.com/s/eth-to-sol/translation/pattern-mapping.md) - [stdlib mapping](https://skills.solana.com/s/eth-to-sol/translation/stdlib-mapping.md) - [type mapping](https://skills.solana.com/s/eth-to-sol/translation/type-mapping.md) ## Ecosystem skill repositories Most ecosystem skills are mirrored on this domain too — fetchable at https://skills.solana.com/s///SKILL.md with a human page at https://skills.solana.com/skills//. Per-skill names, descriptions, mirror URLs, and pinned GitHub URLs are in the JSON index — fetch https://skills.solana.com/api/skills.json (full) or https://skills.solana.com/api/skills-min.json (token-lean, one fetchable URL per skill) to find a specific skill: - [SendAI Skills](https://github.com/sendaifun/skills): The largest community aggregator of Solana protocol skills — Jupiter, Kamino, Meteora, Orca, Raydium, Pyth, Helius, Metaplex, Squads and 40+ more, one folder per protocol. (46 skills indexed @ 06b36b8; 46 mirrored on this domain) - [solana.new](https://github.com/sendaifun/solana-new): One-command Solana workspace: idea → build → launch workflow skills (validate ideas, scaffold projects, debug programs, launch tokens, pitch decks) plus curated repo/MCP catalogs. (25 skills indexed @ e81c261; 25 mirrored on this domain) - [Solana AI Kit](https://github.com/solanabr/solana-ai-kit): Batteries-included Claude Code environment for Solana: 30+ slash commands, 16 specialist agents, security-first rules for Anchor/Pinocchio/TypeScript, MCP config, and 18 external skill repos wired as (6 skills indexed @ d4f6143; 6 mirrored on this domain) - [Helius Core AI](https://github.com/helius-labs/core-ai): Helius’s AI toolbox: skills for the Helius RPC/DAS stack plus SVM fundamentals, DFlow, Jupiter, OKX and Phantom integrations — shipped alongside their CLI, MCP server, and Claude plugin. (6 skills indexed @ 77c3ad8; 6 mirrored on this domain) - [Jupiter Agent Skills](https://github.com/jup-ag/agent-skills): Official Jupiter skills: integrate Ultra/Swap correctly, migrate deprecated swap APIs, wire Jupiter Lend, and verify routing details agents commonly get wrong. (4 skills indexed @ a2211e3; 4 mirrored on this domain) - [Metaplex Skill](https://github.com/metaplex-foundation/skill): The official Metaplex skill: mint NFTs and digital assets with Core, Token Metadata, Bubblegum cNFTs, and Candy Machine — current APIs, correct account structures. (1 skill indexed @ 7af29ba) - [Solana Mobile Dev Skills](https://github.com/solana-mobile/solana-mobile-dev-skill): Official Solana Mobile skills: Mobile Wallet Adapter setup, connection and transaction flows for React Native, Seeker genesis tokens, and SKR address resolution. (5 skills indexed @ 2eaeac3) - [QuickNode Anchor Skill](https://github.com/quiknode-labs/solana-anchor-claude-skill): QuickNode’s Solana/Anchor development skill — program patterns and summaries tuned for their RPC and Streams stack. (1 skill indexed @ 578f3e2; 1 mirrored on this domain) - [Colosseum Copilot](https://github.com/ColosseumOrg/colosseum-copilot): Search and analyze 5,400+ Solana hackathon projects: winner patterns, gap analysis, similar-project lookup, and ML clusters from the Colosseum arena. (1 skill indexed @ 11a0e47) - [QEDGen Solana Skills](https://github.com/QEDGen/solana-skills): Formal verification for Solana programs in Lean — generate and check proofs of program properties, plus an auditor skill that hunts for violations. (3 skills indexed @ bf7f968; 3 mirrored on this domain) - [Safe Solana Builder](https://github.com/frankcastleauditor/safe-solana-builder): Security-first building companion: exploit-pattern references and examples that keep common Solana vulnerability classes out of freshly generated programs. (1 skill indexed @ 9e94436) - [Solana Game Skill](https://github.com/solanabr/solana-game-skill): Unity + Solana game development: Solana.Unity-SDK integration, wallet flows in-engine, NFT display, and PlaySolana/PSG1 patterns, with agents and commands included. (1 skill indexed @ 762b3b2; 1 mirrored on this domain) - [Trail of Bits Skills](https://github.com/trailofbits/skills): The security firm’s public skill set — we index the Solana-relevant picks: a vulnerability scanner distilled from their audit practice, plus audit-prep, code-maturity, fuzzing and static-analysis skil (8 skills indexed @ 304c81a; 8 mirrored on this domain) - [MagicBlock Dev Skill](https://github.com/magicblock-labs/magicblock-dev-skill): End-to-end MagicBlock development: Ephemeral Rollups for sub-10ms Solana execution, plus VRFs, cranks, and session keys for latency-sensitive programs and games. (1 skill indexed @ b6edd28; 1 mirrored on this domain) - [Meteora Invent](https://github.com/MeteoraAg/meteora-invent): Official Meteora skill inside their invent monorepo: launch tokens on DBC, create and manage DAMM v1/v2 and DLMM pools, swap, claim fees, and script the Meteora SDKs. (1 skill indexed @ 6787734; 1 mirrored on this domain) - [Alchemy Skills](https://github.com/alchemyplatform/skills): Official Alchemy skills: Solana RPC, DAS, Yellowstone gRPC, token prices and NFT data via alchemy-api, plus wallet-based x402 flows with SIWS through the agentic gateway. (6 skills indexed @ 546e264; 6 mirrored on this domain) - [Phantom Connect Skill](https://github.com/phantom/phantom-connect-cursor-plugin): Official standalone Phantom Connect SDK skill: social login, transaction signing, token gating, and NFT minting with the React, React Native, and browser SDKs. (8 skills indexed @ 4162aa8; 8 mirrored on this domain) - [Light Protocol Skills](https://github.com/Lightprotocol/skills): Rent-free Solana development with ZK Compression: client and Anchor/Pinocchio program skills for DeFi, payments, and token distribution without rent-exemption costs. (5 skills indexed @ 0f52958; 5 mirrored on this domain) - [DFlow × Phantom Skill](https://github.com/DFlowProtocol/dflow_phantom-connect-skill): Official DFlow + Phantom Connect skill for full-stack, wallet-connected Solana apps: DFlow swaps, prediction market trading, and Proof KYC verification. (2 skills indexed @ 32e51b8; 2 mirrored on this domain) - [QuickNode Blockchain Skills](https://github.com/quiknode-labs/blockchain-skills): QuickNode infrastructure skills: Solana RPC, Jupiter Swap API, Yellowstone gRPC streams, and the rest of their data stack. (1 skill indexed @ 3cdb499; 1 mirrored on this domain) - [pump.fun Skills](https://github.com/pump-fun/pump-fun-skills): Official pump.fun skills for creating coins, trading bonding-curve and PumpSwap AMM pools, managing creator fees, and building Tokenized Agents. (4 skills indexed @ c8aaa6a) - [deBridge Skills](https://github.com/debridge-finance/debridge-skills): deBridge's official agent skills for cross-chain swaps and bridging via DLN across 20+ chains including Solana — wallets, signing, execution, and analytics. (5 skills indexed @ b3bc79a; 5 mirrored on this domain) - [Pyth Plugin](https://github.com/pyth-network/pyth-plugin): Pyth Network's official agent plugin: an MCP server plus nine skills for real-time price feeds — alerts, FX conversion, portfolio tracking, volatility and time-series analysis. (9 skills indexed @ 6365a9d) - [OKX OnchainOS](https://github.com/okx/onchainos-skills): OKX's official OnchainOS skills — agentic wallet, DEX market data, DeFi, portfolio, payments, and dapp discovery across Solana and 20+ chains, including pump.fun meme-launch tooling. (9 skills indexed @ 230f741) - [Chainstack Pumpclaw](https://github.com/chainstacklabs/pumpclaw): Chainstack's pump.fun trading skill wrapping their pumpfun-cli — buy/sell with smart bonding-curve/AMM routing, slippage and priority-fee control, and dry-run simulation. (1 skill indexed @ 80706ea; 1 mirrored on this domain) - [Para Wallet Skill](https://github.com/getpara/para-wallet-skill): Para's official skill for provisioning MPC wallets and signing Solana, EVM, and Cosmos transactions through REST endpoints — no full private key ever assembled. (1 skill indexed @ 86b0343) - [Orquestra](https://github.com/berkayoztunc/orquestra): IDL-to-API/MCP platform's Solana skills: PDA discovery, unsigned transaction building, signing, and preflight simulation. (8 skills indexed @ 18ac4aa; 7 mirrored on this domain) - [Solana Auditor](https://github.com/sanbir/solana-auditor-skills): Multi-agent security-audit framework for Solana/Rust programs — eight parallel specialist agents, modeled on pashov/skills. (1 skill indexed @ e501915; 1 mirrored on this domain) - [Claude Trading Skills](https://github.com/agiprolabs/claude-trading-skills): The Solana-native slice of a 67-skill quant trading pack: Solana RPC, Jito bundles, pump.fun mechanics, Helius, ShredStream. (5 skills indexed @ 938a6ee; 5 mirrored on this domain) - [ChainGPT Skills](https://github.com/ChainGPT-org/chaingpt-claude-skill): ChainGPT's Solana-dedicated skills from their multi-chain Web3 AI toolkit — transaction building and signing, plus Drift perps. (2 skills indexed @ 9185b17; 2 mirrored on this domain) ## More community skills - [GLAM Skill](https://github.com/glamsystems/glam-skill): Solana vault management via the GLAM Protocol. - [Octav API Skill](https://github.com/Octav-Labs/octav-api-skill): Wallet portfolio tracking, transaction history, and DeFi positions. - [PNP Markets Skill](https://github.com/pnp-protocol/solana-skill): Permissionless prediction markets with V2 AMM and P2P betting. - [Solana Skills Plugin](https://github.com/tenequm/claude-plugins): Anchor/native program development, security auditing, ZK compression. - [Bitget Wallet Skill](https://github.com/bitget-wallet-ai-lab/bitget-wallet-skill): Multi-chain swaps, bridges, and gasless transactions incl. Solana. - [Project 0 Agents](https://github.com/0dotxyz/p0-agents): Yield discovery, lending, and strategy execution on Solana. - [Breeze Agent Kit](https://github.com/anagrambuild/breeze-agent-kit): AI agents managing Solana yield via Breeze — MCP, x402, SKILL.md. - [SP3ND Agent Skill](https://github.com/kent-x1/sp3nd-agent-skill): Buy Amazon products with USDC on Solana via x402. - [Sentients](https://github.com/koshmade/sentients.wtf): AI agents minting inscriptions with autonomous wallets. - [MoonPay Skills](https://github.com/moonpay/skills): Official MoonPay agent toolkit — on-ramps, swaps, and wallets across chains, with Solana trading and prediction-market coverage. - [Bankr Skills](https://github.com/BankrBot/skills): Multi-chain agent-skill marketplace whose core trading skill runs Solana wallets and Raydium LaunchLab token launches. - [Switchboard Agent Skills](https://github.com/switchboard-xyz/gitbook-on-demand): Switchboard's docs-embedded skills for oracle feeds, randomness, and Surge/x402 — includes a dedicated Solana/SVM feeds skill. - [Wormhole Interop Skill](https://github.com/wormhole-foundation/blockchain-interop): Wormhole Foundation's cross-chain interoperability skill — messaging, NTT, CCTP, and queries across chain families including SVM. - [Solana Dev Skills](https://github.com/locallaunchsc-cloud/solana-dev-skills): A 14-skill Solana-only pack (scaffold, audit, deploy, Jupiter, Pyth, Squads, MetaDAO) — substantive content, brand-new and unproven. - [Sol CLI Skill](https://github.com/solanaguide/solana-cli): CLI-backed payments, staking, and trading skill built for local-key-only agent use. ## Disclaimer Community skills are independently developed and are not reviewed, endorsed, or maintained by the Solana Foundation. Evaluate code, license, and security practices before use. Links above are pinned to the commit we indexed; install commands pull current HEAD.