What problem does it solve? Migrating Solana JavaScript projects from @solana/web3.js (v1) to @solana/kit involves API rewrites, async keypair changes, BigInt conversions, and dependency blockers like Anchor that are hard to assess manually. ## Core Features & Use Cases - Migration Analysis: Scans a codebase with shell and Node scripts to count v1 patterns (Connection, Keypair, PublicKey, Transaction) and rates migration complexity as low, medium, or high. - API Mapping Reference: Provides side-by-side v1-to-Kit conversions for RPC calls, transaction building, signing, subscriptions, and PDAs. - Compatibility & Edge Cases: Documents which SDKs (Anchor, Metaplex, Jupiter, Orca) support Kit and covers gotchas like BigInt serialization, missing .send() calls, and AbortController-based subscriptions. - Use Case: A developer with an existing Solana dApp runs the analyzer, learns their project has 40 migration points and no Anchor dependency, then follows the API mappings to convert transaction-building code to Kit's pipe-based functional style. ## Quick Start Analyze my Solana project for @solana/kit migration readiness and show me how to convert the v1 patterns you find.