What problem does it solve? Testing Sui Move applications that interact with USDC requires a funded local environment, but mainnet USDC is unavailable locally and setting up a coin package, faucet funding, and minting flows by hand is repetitive and error-prone. ## Core Features & Use Cases - Local Network Bootstrap: Start a local Sui validator with faucet via sui start --with-faucet --force-regenesis and configure the CLI environment. - Mock USDC Deployment: Scaffold and publish a Move coin package matching Circle's native USDC (6 decimals), with an initial 1M USDC supply and a transferable TreasuryCap. - Faucet, Mint, and Balance Flows: Request faucet SUI, mint additional USDC via sui client call or PTB, split and transfer coins, and verify balances. - Use Case: A developer building a Sui DeFi integration needs USDC-denominated test transactions; they run the bootstrap scenarios to spin up the network, publish the mock coin, and mint USDC to test wallets. ## Quick Start Ask the agent to start a local Sui network with a faucet and deploy a mock USDC coin, then mint 10,000 USDC to your dev address.