What problem does it solve? When a pump.fun creator key is shared or leaked, any non-atomic fee collection leaves a window where another key-holder or sweeper bot can call collectCoinCreatorFee first and drain the vault. This Skill performs fee collection and fund transfer in a single atomic Solana transaction inside a Jito bundle, eliminating that race window. ## Core Features & Use Cases - One-shot atomic collect: Runs collectCoinCreatorFee plus a transfer to a safe destination wallet plus a Jito tip in one transaction via collect-jito.js. - Long-running watcher: watch-collect.js polls the vault balance every 30 seconds and triggers collection once it exceeds a configurable MIN_COLLECT_SOL threshold. - Full consolidation: consolidate.js drains the vault, creator wallet, and funder wallet to a safe wallet in one Jito bundle, for retiring a coin or shutting down a leaked key. - Use Case: A creator key has leaked and bots are watching the vault. You run the watcher with a cold DESTINATION wallet so every fee accrual above 0.05 SOL is swept atomically before any competing collector can land. ## Quick Start Set DESTINATION, FUNDER_SECRET, CREATOR_SECRET, and JITO_TIP in your environment, then ask the assistant to run npm run collect from the repo root to atomically collect the pump.fun creator fees into your safe wallet.