What problem does it solve? Manually running a collect script every time a pump.fun creator-fee vault fills up is tedious and error-prone, and collecting too early wastes Jito tips on small balances. This Skill deploys a long-running daemon that watches the vault and fires an atomic collect-and-drain transaction only when the balance crosses a configured threshold. ## Core Features & Use Cases - Threshold-based auto-collection: Polls the coin's coinCreatorVault PDA on a configurable interval and runs collect-jito.js only when the balance exceeds MIN_COLLECT_SOL. - Atomic drain via Jito bundles: Each collect bundles the fee claim and the transfer to a safe DESTINATION wallet, so a leaked creator key cannot be swept by a searcher mid-flow. - Deployment-ready daemon: Designed to run under Railway, Fly, systemd, PM2, or a screen session, with documented failure modes (RPC rate limits, stale tip accounts, duplicate instances) and fixes. - Use Case: A token creator deploys the watcher to Railway with MIN_COLLECT_SOL=0.05; every time trading fees accumulate past 0.05 SOL, the daemon automatically collects and drains them to a cold wallet without any manual intervention. ## Quick Start Set the required environment variables (RPC_URL, FUNDER_SECRET, CREATOR_PUBKEY, CREATOR_SECRET, MINT, DESTINATION, MIN_COLLECT_SOL) and ask the assistant to start the watch-collect daemon to auto-collect creator fees for your pump.fun coin.