.agents/skills/pump-admin-ops/SKILL.md
Admin and authority operations for the Pump protocol — set coin creator, update token incentives, set IDL authority, claim cashback, Mayhem mode, and BothPrograms cross-program admin instructions.
npx skillsauth add x402agent/solana-clawd pump-admin-opsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage Pump protocol authority operations: set coin creator, update token incentives, set IDL authority, claim cashback, and cross-program admin instructions.
| Authority | Account | Controls |
|-----------|---------|----------|
| global.authority | Global PDA | Protocol parameters |
| bondingCurve.creator | Per-token | Creator fee recipient |
| sharingConfig.admin | Per-token | Fee sharing shareholders |
| global.idlAuthority | Global PDA | IDL updates |
| feeConfig.authority | FeeConfig PDA | Fee tier configuration |
| backendWallet | Global PDA | Cashback claims |
const ix = await PUMP_SDK.setCreator({ mint, creator: newCreator, user: admin });
// Cross-program version:
const ixs = await onlineSdk.adminSetCoinCreatorInstructions(newCreator, mint);
const ix = await PUMP_SDK.syncUserVolumeAccumulator({ user, authority });
const ix = await PUMP_SDK.setIdlAuthority({ newAuthority, currentAuthority });
const ix = await PUMP_SDK.claimCashback({ user, backendSigner });
| Method | Description |
|--------|-------------|
| adminSetCoinCreatorInstructions | Set creator on Pump + PumpAMM |
| collectCoinCreatorFeeInstructions | Collect fees from both vaults |
| syncUserVolumeAccumulatorBothPrograms | Sync volume on both programs |
Tokens with isMayhemMode === true use:
MAYHEM_PROGRAM_ID for additional PDAsglobal.reservedFeeRecipients[] instead of global.feeRecipients[]bondingCurve.complete before admin operations on bonding curvesBONDING_CURVE_NEW_SIZE before setCreatorsetCreator requires account extension first — will fail on undersized accountsadminRevoked === true on SharingConfig blocks all shareholder updatesdevelopment
Formally verify programs by writing Lean 4 proofs. Trigger this skill whenever the user wants to formally verify code, generate Lean 4 proofs, prove properties about algorithms or smart contracts, verify invariants, convert program logic into formal specifications, or anything involving Lean 4 and formal verification. Also trigger when the user mentions "qedgen", "lean proof", "formal proof", "verify my code", "prove correctness", "formal verification", or wants mathematical guarantees about their implementation.
data-ai
Orchestrate multi-bot trading swarms on Pump.fun with persona-driven agents
tools
End-to-end Solana development playbook (Jan 2026). Prefer Solana Foundation framework-kit (@solana/client + @solana/react-hooks) for React/Next.js UI. Prefer @solana/kit for all new client/RPC/transaction code. When legacy dependencies require web3.js, isolate it behind @solana/web3-compat (or @solana/web3.js as a true legacy fallback). Covers wallet-standard-first connection (incl. ConnectorKit), Anchor/Pinocchio programs, Codama-based client generation, LiteSVM/Mollusk/Surfpool testing, and security checklists.
tools
Buy and sell tokens on Pump.fun bonding curves and AMM pools