What problem does it solve? Solana developers often waste hours guessing why a program or transaction failed. This Skill replaces guesswork with a systematic debugging process: read the exact error, simulate the transaction, inspect account state, and trace CPI chains to find the real root cause. ## Core Features & Use Cases - Structured Debug Workflow: Follows a six-step process covering error parsing, transaction simulation, account state inspection, and CPI chain tracing. - Top 20 Pitfall Reference: Matches errors against the most common Solana mistakes (wrong PDA seeds, stale blockhash, missing ATA, rent exemption, compute budget) with exact fixes. - Error Code Decoding: Maps Anchor 6xxx custom errors, 2xxx constraint errors, and system error codes to concrete causes. - Use Case: A developer gets ConstraintSeeds (error 2003) on mainnet. The Skill simulates the transaction, compares client-side PDA derivation against program seeds, and provides the corrected TypeScript code. ## Quick Start Ask the assistant to debug your failing Solana transaction by providing the error message or transaction signature.