launch-token

Guides developers through creating and launching SPL or Token-2022 tokens on Solana.

Updated Mar 12, 2026
One-click install
npx skills add https://github.com/RavitejaKarra24/dotfiles --skill launch-token-ravitejakarra24
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: launch-token
Source: https://github.com/RavitejaKarra24/dotfiles/tree/main/agents/.agents/skills/launch-token
Command: npx skills add https://github.com/RavitejaKarra24/dotfiles --skill launch-token-ravitejakarra24

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Launching a token on Solana involves many error-prone decisions: choosing between SPL Token and Token-2022, picking a launch mechanism (Pump.fun, Meteora DBC, Raydium LP, or direct mint), configuring metadata, and designing credible tokenomics. This Skill walks developers through each step so nothing critical is missed. ## Core Features & Use Cases - Launch path selection: Compares Pump.fun bonding curves, Meteora DBC, direct SPL mint, Token-2022 with extensions, and Raydium LP launches with code examples for each. - Tokenomics validation: Provides a checklist covering supply design, distribution allocations, vesting, multisig treasuries, and anti-rug patterns. - End-to-end workflow: Covers mint creation, Metaplex or Token-2022 metadata, authority revocation, devnet testing, and mainnet launch, with phase handoff via .superstack/build-context.md. - Use Case: A founder wants to launch a memecoin on Pump.fun. The Skill reads prior build context, explains bonding-curve mechanics, validates the tokenomics plan, and guides the devnet test before mainnet execution. ## Quick Start Ask the assistant to help you launch a token on Solana and walk you through choosing the right token standard and launch mechanism.

Frequently Asked Questions about launch-token

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I launch a token on Solana?

Choose a token standard (SPL Token or Token-2022), pick a launch mechanism such as Pump.fun, Meteora DBC, or a direct Raydium LP, then create the mint, attach metadata, and configure tokenomics. Always test the full flow on devnet before executing the mainnet launch.

SPL Token vs Token-2022: which should I use?

SPL Token is the default and most compatible standard. Token-2022 adds extensions like transfer fees, transfer hooks, metadata pointers, and confidential transfers, making it better for regulated tokens, RWAs, or tokens needing advanced controls.

Pump.fun vs Meteora DBC for a token launch?

Pump.fun suits simple memecoin launches with a fixed bonding curve that migrates to PumpSwap. Meteora DBC offers a configurable multi-segment curve (up to 16 points), fixed or dynamic supply, and graduation into DAMM v1 or v2 liquidity.

Should I revoke mint and freeze authority after launch?

Revoking mint authority after the total supply is minted prevents inflation and builds community trust, and revoking freeze authority is common for community tokens. Revocation is irreversible, so keep authorities only with documented justification or a Squads multisig.

How do I verify my token is not flagged as a rug pull?

Run the token through rug-check-mcp or aethercore-token-rugcheck before launch to detect safety warnings. Lock team tokens in on-chain vesting, burn or lock LP tokens, use a multisig treasury, and publish all allocation wallet addresses.