An Agent Skill for building on Metaplex — the standard infrastructure for NFTs and tokens on Solana.
This skill gives your AI coding agent full knowledge of Metaplex programs, CLI commands, and SDK patterns. Instead of guessing at APIs or hallucinating flags, the agent reads the correct reference on demand and executes accurately.
| Program | What It Does | CLI | Umi SDK | Kit SDK |
|---|---|---|---|---|
| Core | Next-gen NFTs — single account, plugins, royalty enforcement | Yes | Yes | - |
| Token Metadata | Fungible tokens, NFTs, pNFTs, editions | Yes | Yes | Yes |
| Bubblegum | Compressed NFTs via Merkle trees — massive scale at minimal cost | Yes | Yes | - |
| Candy Machine | NFT drops with guards (allowlists, payments, limits) | Yes | Yes | - |
| Genesis | Token launches with fair distribution + liquidity graduation | - | Yes | - |
CLI (mplx) — direct execution, no code needed:
- Create/update/burn NFTs, collections, fungible tokens
- Upload assets to Irys storage
- Configure and deploy Candy Machines with guards
- Create Merkle trees and mint compressed NFTs
- Transfer NFTs and tokens
- Check balances, airdrop SOL
Umi SDK — full programmatic access:
- All CLI operations plus: fetch by owner/collection/creator, DAS API queries, delegates, lock/unlock, print editions, verify/unverify creators and collections, freeze/thaw, soulbound NFTs, plugin management, Genesis token launches
Kit SDK (@solana/kit) — minimal dependencies:
- Token Metadata operations: create/transfer NFTs, pNFTs, fungibles, PDAs
The skill uses progressive disclosure — a lightweight router (SKILL.md, ~100 lines) directs the agent to the specific reference file it needs. Only relevant content is loaded:
SKILL.md Router — loaded when skill activates
references/cli.md Shared CLI setup (loaded for any CLI task)
references/cli-core.md Core CLI commands
references/sdk-token-metadata.md TM SDK patterns
references/concepts.md Account structures, PDAs
... (12 reference files total)
Claude Code (via skills.sh):
npx skills add metaplex-foundation/metaplex-skillClaude Code (manual):
# Project-scoped
cp -r skills/metaplex /path/to/project/.claude/skills/metaplex
# Global
cp -r skills/metaplex ~/.claude/skills/metaplexClawHub:
clawhub install metaplexBuilt on the Agent Skills specification. Works with:
- Claude Code
- Cursor
- GitHub Copilot
- Codex
- Windsurf
- Any agent that supports the Agent Skills format
- Metaplex Docs: https://developers.metaplex.com
- Agent Skills Spec: https://agentskills.io
- Protocol Fees: https://developers.metaplex.com/protocol-fees
Apache-2.0