solana-program-development
Installation
SKILL.md
Solana Program Development (Rust)
Framework Selection
| Criterion | Anchor | Pinocchio |
|---|---|---|
| Use when | Fast iteration, IDL generation, mature tooling | Max CU efficiency, minimal binary, zero deps |
| CU overhead | Baseline | ~84% savings vs Anchor |
| IDL | Auto-generated | Manual |
| Best for | Most programs, cto-pay default | Hot-path instructions, token vaults |
Default to Anchor unless CU budget is critical.