A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Claude Code configs for the expert Solana builder. CLAUDE.md, agents, commands, hooks, rules, skills and settings across
Production-ready Claude Code configuration for full-stack Solana development. Combines best practices from multiple sources into an agent-optimized, token-efficient config you can install and adapt to your specific project.
The idea here is to provide a generic CLAUDE.md that relies on subagents to plan and execute actions, dynamically loading markdown files, saving tokens and context in the end of the day. This config fully leverages the official Claude Code config recommendations:
Current multi-agent workflow favors monorepos, so we use a single CLAUDE.md/config for the whole project while leveraging agents and context-specific skills to solve each step of builder flow.
If you installed manually, remember to rename ./CLAUDE-solana.md back to ./CLAUDE.md, as the current top-level CLAUDE.md file is focused on maintaining the repo itself.
A complete .claude/ configuration that turns Claude into a Solana development expert with:
# Option 0: Fork Template (Github UI)
claude -m "/cleanup" # then start claude code running /cleanup so top-level directory of your project isn't polluted
# Option 1: One-liner installer (Claude Code)
curl -fsSL https://raw.githubusercontent.com/solanabr/solana-claude-config/main/install.sh | bash
# Option 2: One-liner installer (Codex, Opencode, everything else)
curl -fsSL https://raw.githubusercontent.com/solanabr/solana-claude-config/main/install.sh | bash -s -- --agents
# Option 3: Manual setup
git clone --recurse-submodules https://github.com/solanabr/solana-claude-config.git
cp -r solana-claude-config/.claude /path/to/your-project/
cp solana-claude-config/CLAUDE-solana.md /path/to/your-project/CLAUDE.md
cd /path/to/your-project && git submodule update --init --recursive
# Start Claude Code
claude
--agents FlagPass --agents to install everything into .agents/ instead of .claude/. Same content, different directory name. Useful when .claude/ is already taken or for non-Claude AI tools (Cursor, Windsurf, Copilot, etc.).
bash install.sh --agents /path/to/your-project
To update an --agents install:
# Run from your project root:
bash .agents/bin/update.sh
After installation, configure MCP servers for enhanced capabilities:
# In your project with Claude Code running:
/setup-mcp
This guides you through API key configuration for Helius, Context7, and other MCP servers.
| Submodule | Source | Purpose |
|---|---|---|
ext/solana-dev | solana-foundation/solana-dev-skill | Core Solana development (programs, frontend, testing, security) |
ext/sendai | sendaifun/skills | DeFi protocol integrations (Jupiter, Drift, Raydium, etc.) |
ext/solana-game | solanabr/solana-game-skill | Game development (Unity, PlaySolana, PSG1) |
ext/cloudflare | cloudflare/skills | Infrastructure (Workers, Agents SDK, MCP servers) |
ext/trailofbits | trailofbits/skills | Security auditing and vulnerability scanning |
ext/qedgen | QEDGen/solana-skills | Formal verification with Lean 4 theorem proving |
ext/solana-mobile | nicoorfi/solana-mobile | Mobile Wallet Adapter, Genesis Token, SKR address resolution |
ext/colosseum | ColosseumOrg/colosseum-copilot | Startup research, idea validation, hackathon projects (proprietary license) |
ext/safe-solana-builder | frankcastleauditor/safe-solana-builder | Security-first code generation (70+ audit-derived rules) |
ext/vercel | vercel-labs/agent-skills | Vercel deployment, Next.js, AI SDK, v0, edge functions |
Each agent loads its own specialized context on invocation:
"Use solana-architect to design the vault program"
"Use anchor-engineer to implement the deposit instruction"
"Use defi-engineer to integrate Jupiter swaps"
"Use solana-qa-engineer to write comprehensive tests"
Claude will spawn each specialized agent by itself based on context and, with CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS enabled, orchestrate multi-agent workflows:
"Create an agent team: solana-architect for design, anchor-engineer for implementation, solana-qa-engineer for testing"
Recommended team patterns:
| Pattern | Flow | Use Case |
|---|---|---|
| program-ship | architect → anchor/pinocchio → qa | Build program from spec to tested |
| full-stack | architect → anchor → frontend → qa | End-to-end feature |
| audit-and-fix | qa → trailofbits context → anchor | Audit and remediate |
| game-ship | game-architect → unity → qa | Game feature |
| defi-compose | researcher → defi-engineer → qa | DeFi integration |
| token-launch | token-engineer → frontend → qa | Token creation + launch UI |
Pre-configured MCP servers in .mcp.json (API keys go in .env):
| Server | Capabilities |
|---|---|
| Helius | 60+ tools: RPC, DAS API, webhooks, priority fees, token metadata, NFT data |
| solana-dev | Solana Foundation official MCP — Solana docs, guides, and API references |
| Context7 | Up-to-date library documentation lookup |
| Playwright | Browser automation for dApp testing and visual verification |
| context-mode | Context window optimization — compresses large RPC responses, build logs, and code analysis |
| memsearch | Persistent AI memory across sessions — auto-captures summaries, semantic search, git-friendly storage |
CLAUDE.local.md for private scratch notes (gitignored, never shared)| Layer | Stack |
|---|---|
| Programs | Anchor 0.31+, Pinocchio, Rust 1.82+ |
| Token Extensions | Token-2022 (transfer hooks, confidential transfers, metadata) |
| Testing | Mollusk, LiteSVM, Surfpool, Trident |
| Frontend | @solana/kit, Next.js 15, React 19 |
| Mobile | React Native, Expo, Mobile Wallet Adapter |
| Backend | Axum 0.8+, Tokio 1.40+, sqlx |
| Unity Games | Solana.Unity-SDK, .NET 9, C# 13 |
| PlaySolana | PSG1 console, PlayDex, SvalGuard |
| DeFi | Jupiter, Drift, Kamino, Raydium, Orca, Meteora |
| Infrastructure | Cloudflare Workers, GitHub Actions, Docker |
.
├── CLAUDE.md # Main hub - Claude reads this first
├── README.md # This file
├── .mcp.json # MCP server configurations (project root)
├── install.sh # One-liner installer
├── update.sh # Deprecation wrapper → .claude/bin/update.sh
├── validate.sh # Config integrity checker
├── LICENSE # MIT
├── tests/ # Config integrity test suite
├── .github/workflows/
│ ├── ci.yml # PR validation
│ └── claude-code.yml # Claude Code action template
└── .claude/
├── VERSION # Semver version (e.g. 1.4.0)
├── agents/ # 15 specialized agents
├── bin/
│ ├── update.sh # In-place update from upstream
│ └── resync.sh # Submodule resync script
├── commands/ # 25 workflow commands
├── skills/ # Progressive-loading knowledge
│ ├── SKILL.md # Unified hub routing to all skills
│ ├── ext/ # External skill submodules
│ │ ├── solana-dev/ # Solana Foundation dev skill (core)
│ │ ├── sendai/ # SendAI protocol skills (DeFi)
│ │ ├── solana-game/ # Solana game skill (Unity, PSG1)
│ │ ├── cloudflare/ # Cloudflare Workers, Agents SDK
│ │ ├── trailofbits/ # Trail of Bits security skills
│ │ ├── qedgen/ # QEDGen formal verification (Lean 4)
│ │ ├── solana-mobile/ # Mobile Wallet Adapter, Genesis Token
│ │ ├── colosseum/ # Colosseum Copilot (startup research)
│ │ ├── safe-solana-builder/ # Security-first code generation
│ │ └── vercel/ # Vercel deployment, Next.js, AI SDK
│ ├── token-2022.md # Token Extensions guide (local)
│ ├── backend-async.md # Axum/Tokio patterns (local)
│ └── deployment.md # Deployment workflows (local)
├── rules/ # Auto-loading constraints
└── settings.json # Permissions, hooks, agent teams
| Agent | Purpose | Model |
|---|---|---|
| solana-architect | System design, PDA schemes, token economics, multi-program architecture | Opus |
| anchor-engineer | Anchor development, IDL generation, account constraints | Opus |
| pinocchio-engineer | CU optimization (80-95% savings), zero-copy, minimal binary | Opus |
| defi-engineer | DeFi integrations: Jupiter, Drift, Kamino, Raydium, Orca, Meteora | Opus |
| token-engineer | Token-2022 extensions, token economics, launch mechanics | Opus |
| solana-frontend-engineer | React/Next.js, wallet UX, transaction flows, accessibility | Opus |
| mobile-engineer | React Native/Expo, mobile wallet adapter, deep linking | Sonnet |
| rust-backend-engineer | Axum APIs, indexers, WebSocket services | Opus |
| devops-engineer | CI/CD, monitoring, RPC infrastructure, Cloudflare Workers | Sonnet |
| solana-qa-engineer | Testing (Mollusk/LiteSVM/Trident), CU profiling, code quality | Opus |
| tech-docs-writer | READMEs, API docs, integration guides | Sonnet |
| game-architect | Solana game design, Unity architecture, on-chain game state, PlaySolana | Opus |
| unity-engineer | Unity/C# implementation, Solana.Unity-SDK, wallet integration, NFT display | Sonnet |
| solana-guide | Learning, tutorials, concept explanations, progressive learning paths | Sonnet |
| solana-researcher | Ecosystem research, protocol investigation, SDK analysis | Sonnet |
| Command | Purpose |
|---|---|
/build-program | Build Anchor or native Solana program |
/build-app | Build Next.js/Vite web client |
/build-unity | Build Unity project (WebGL, Desktop, PSG1) |
/scaffold | Generate project scaffolding (program + frontend + tests + CI) |
| Command | Purpose |
|---|---|
/test-rust | Run Mollusk, LiteSVM, Surfpool, Trident tests |
/test-ts | Run TypeScript tests (Anchor, Vitest, Playwright) |
/test-dotnet | Run .NET/C# tests (Unity Test Framework, NUnit) |
/test-and-fix | Run tests and auto-fix common issues |
/audit-solana | Comprehensive security audit |
/diff-review | AI-powered diff review for Solana-specific issues |
/profile-cu | CU profiling per instruction with optimization suggestions |
/benchmark | CU benchmarks with before/after comparison |
/debug-user-tx | Replay a user's failing tx against forked state, map error to source |
| Command | Purpose |
|---|---|
/deploy | Deploy to devnet (always first) or mainnet |
/migrate-web3 | Migrate from @solana/web3.js to @solana/kit |
/generate-idl-client | Generate typed clients from IDL (Codama/Shank) |
| Command | Purpose |
|---|---|
/quick-commit | Create branch, format, lint, conventional commit |
/setup-ci-cd | Configure GitHub Actions pipeline |
/setup-mcp | Configure MCP server API keys and connections |
/resync | Resync external skill submodules to latest |
/write-docs | Generate documentation for programs, APIs, components |
/explain-code | Explain complex code with visual diagrams |
/plan-feature | Plan feature implementation with specifications |
/update | Update config to latest version from upstream |
/cleanup | Initialize forked template — setup CLAUDE.md, remove scaffolding |
| Script | Purpose |
|---|---|
install.sh | One-liner installer: copies config to your project (--agents for non-Claude tools) |
update.sh | Deprecation wrapper → .claude/bin/update.sh |
validate.sh | Validates all config integrity (agents, commands, skills, settings, versioning) |
tests/run_all.sh | Runs full test suite for config validation |
This config includes a pre-built GitHub Action (.github/workflows/claude-code.yml) for PR-based iteration:
ANTHROPIC_API_KEY to your repository secrets.github/workflows/claude-code.yml to your project@claude in PR commentsAll new work starts on a feature branch:
# Format: <type>/<scope>-<description>-<DD-MM-YYYY>
git checkout -b feat/program-vault-15-01-2026
git checkout -b fix/frontend-auth-15-01-2026
Use /quick-commit to automate branch creation and commits.
Before merging, run /diff-review or check diff against main:
git diff main...HEAD
Remove: excessive comments, abnormal try/catch blocks, verbose errors, redundant validation.
Keep: legitimate security checks, non-obvious explanations, matching error patterns.
/cleanup — this copies CLAUDE-solana.md → CLAUDE.md and removes config repo scaffolding (tests, install scripts, docs)For monorepos, add a CLAUDE.md to each package/module with architecture decisions scoped to that directory. Claude Code automatically loads these when working in that subdirectory.
# Preferred: use /update in Claude Code, or run directly:
bash .claude/bin/update.sh
# Preview changes without applying:
bash .claude/bin/update.sh --dry-run
# Resync skill submodules only:
bash .claude/bin/resync.sh
# Or manually update submodules
git submodule update --remote --merge
This project builds on excellent work from the community:
solana-foundation/solana-dev-skill - The Solana Foundation's comprehensive skill set for Solana development, included as the primary submodule.
sendaifun/skills - SendAI's protocol-specific skills for DeFi integrations.
solanabr/solana-game-skill - Game development skills for Unity and PlaySolana.
trailofbits/skills - Trail of Bits security auditing skills.
cloudflare/skills - Cloudflare infrastructure skills.
QEDGen/solana-skills - Formal verification for Solana programs using Lean 4 theorem proving.
ColosseumOrg/colosseum-copilot - Solana startup research, idea validation, and hackathon project discovery from Colosseum. Proprietary license (Copyright Colosseum).
0xquinto/bcherny-claude - Compiled Boris Cherny's (creator of Claude Code at Anthropic) best practices including verification loops, parallel Claude sessions, and CLAUDE.md patterns.
MIT - See LICENSE
Open-source AI code assistant for VS Code and JetBrains — autocomplete, chat, and agents
Garry Tan's Claude Code setup with 23 tools serving as CEO, Designer, Eng Manager, and QA
Kanban-based orchestration for 10+ coding agents with isolated git worktrees per agent
Battle-tested Claude Code workflows — self-correcting memory, parallel worktrees, 8 hook types, 5 agents