solana-development
Installation
SKILL.md
Solana Development
Build Solana programs using Anchor framework or native Rust. Both approaches share the same core concepts (accounts, PDAs, CPIs, tokens) but differ in syntax and abstraction level.
Quick Start
Recommended: Anchor Framework
Anchor provides macros and tooling that reduce boilerplate and increase developer productivity:
use anchor_lang::prelude::*;
declare_id!("YourProgramID");
#[program]
pub mod my_program {
use super::*;