One command for Claude Code, Cursor, Codex, Windsurf and other agents — installs from the upstream repo (current HEAD; it ships 5 skills — pick compressed-token when prompted).
Drop the mirrored SKILL.md into your skills directory. Global (all projects):
Or scoped to the current project:
This skill references companion files (9) that stay on GitHub — links in the mirror point there, pinned to the indexed commit. For the full offline bundle use the CLI or Git tab.
The skill is mirrored as plain markdown — tell your agent:
Or have the skills CLI generate a one-shot prompt (pipe it straight into your agent):
Or pull the raw file into a terminal session:
Copy the skill directory with all companion files straight from GitHub:
Skill contents
Compressed token client
Build token applications with @lightprotocol/compressed-token (TypeScript). Compressed token accounts are always rent-free. The SPL mint and interface PDA still pay rent, but each holder’s compressed token account costs a fraction of an SPL account.
| Creation cost | SPL | Compressed |
|---|---|---|
| Token account | ~2,000,000 lamports | ~5,000 lamports |
Compressed token accounts store balance, owner, mint, and delegate like SPL token accounts. They require no associated token account (ATA) and no rent-exempt balance, and convert to and from SPL tokens at any time with compress() and decompress(). Wallets like Phantom and Backpack display them alongside SPL tokens.
When to use compressed tokens
- Token distribution and airdrops without paying up-front rent per recipient
- Sending Payments, Payroll, and similar flow etc.
- Storing token balances rent-free
- Token-2022 mints with metadata and other supported extensions
How it works
Compressed tokens use a standard SPL (or Token-2022) mint plus an interface PDA. The interface PDA is an omnibus account that locks SPL tokens while they are compressed and releases them on decompression. Create it with the mint via createMint(), or add one to an existing mint with createTokenPool().
SPL mint --register--> interface PDA (omnibus PDA)
mintTo / compress --> compressed token accounts (rent-free, in state tree)
decompress --> back to SPL token account
Each mint supports a maximum of 4 interface PDAs. They get write-locked during compression and decompression, so add more with addTokenPools() to raise per-block write-lock capacity for high-throughput distribution.
Prerequisites
Examples run on localnet by default. For devnet or mainnet, set the API_KEY env var (Helius or Triton RPC key) and provide a Solana keypair at ~/.config/solana/id.json. In production, load both from a secrets manager.
import { createRpc } from '@lightprotocol/stateless.js';
// Localnet (defaults to http://127.0.0.1:8899):
const rpc = createRpc();
// Devnet or mainnet:
const rpc = createRpc(`https://devnet.helius-rpc.com?api-key=${process.env.API_KEY!}`);
Domain references
| Task | Reference |
|---|---|
| Create a mint with interface PDA, add more | references/create-mint.md |
| Mint compressed tokens | references/mint-to.md |
| Transfer compressed tokens | references/transfer.md |
| Approve and revoke delegates | references/approve-revoke.md |
| Compress and decompress SPL tokens | references/compress-decompress.md |
| Merge fragmented compressed accounts | references/merge-token-accounts.md |
| Token-2022 with compression | references/token-2022.md |
| Token distribution and airdrops | references/distribution.md |
| Query balances, accounts, and history | references/queries.md |
Operations
All functions are in @lightprotocol/compressed-token unless noted. RPC helpers come from @lightprotocol/stateless.js.
- Mints and pools:
createMint(SPL mint + pool),createTokenPool(pool for existing mint),addTokenPools(max 4 per mint). - Mint and move:
mintTo,approveAndMintTo,transfer,transferDelegated. - Delegates:
approve,revoke. - Compress and decompress:
compress,decompress,decompressDelegated,compressSplTokenAccount. - Consolidate:
mergeTokenAccounts(up to 8 accounts). - Instruction builders:
CompressedTokenProgram.*methods (compress,decompress,transfer,createTokenPool,deriveTokenPoolPda) and the standalonecreateMintInstructionexport. - Selection and pools:
getTokenPoolInfos,selectTokenPoolInfo,selectTokenPoolInfosForDecompression,selectMinCompressedTokenAccountsForTransfer. - RPC (
Rpc):createRpc,getValidityProof,getCompressedTokenAccountsByOwner,getCompressedTokenAccountsByDelegate,getCompressedTokenBalancesByOwnerV2,getCompressionSignaturesForTokenOwner,selectStateTreeInfo. - Build and send:
buildAndSignTx,sendAndConfirmTx,dedupeSigner.
Reference repos
- compressed-token-cookbook — action-level and instruction-level examples for every operation, plus wallet integration (balances, history, send, compress, decompress).
- example-token-distribution — simple and optimized batched airdrop flows, decompress-on-claim pattern.
- examples-zk-compression — more ZK compression examples.
If cloned locally, scope Read, Glob, Grep to these repositories and the current project directory only.
Workflow
- Clarify intent. Recommend plan mode if not active. Use
AskUserQuestionto resolve blind spots before execution. - Identify references. Match the task to the domain references and reference repos above.
- Write a plan (YAML task format). Never guess; identify blockers (permissions, dependencies, unknowns) up front.
- Execute. Use
Tasksubagents for parallel research; track progress withTodoWrite. - When stuck, spawn a read-only subagent with
Read,Glob,Grep, and DeepWiki MCP access, loadingskills/ask-mcp. Scope reads to skill references, example repos, and docs.
Build and test
Install dependencies and run a script against localnet, devnet, or mainnet by setting the RPC URL in createRpc().
npm install @lightprotocol/stateless.js @lightprotocol/compressed-token @solana/web3.js @solana/spl-token
npx tsx your-script.ts
SDK references
DeepWiki fallback
If no matching pattern in the reference repos, ask mcp__deepwiki__ask_question against Lightprotocol/light-protocol, for example “How to mint compressed tokens with @lightprotocol/compressed-token?”.
Security
This skill provides code patterns and documentation references only.
- Declared dependencies. Devnet and mainnet examples require
API_KEY(Helius or Triton RPC key) and read~/.config/solana/id.jsonfor the payer keypair. Neither is needed on localnet. In production, load both from a secrets manager. - User-provided configuration. RPC endpoints, wallet keypairs, and tokens are configured in the user’s application code. The skill demonstrates patterns; it does not store or transmit secrets.
- Filesystem scope.
Read,Glob,Grepmust stay within the current project directory and the reference repos above. - Install source.
npx skills add Lightprotocol/skillsinstalls from the public GitHub repository (Lightprotocol/skills). Verify the source before running. - Audited protocol. Light Protocol smart contracts are independently audited. Reports are at github.com/Lightprotocol/light-protocol/tree/main/audits.