{"id":43214417,"url":"https://github.com/solana-foundation/solana-dev-skill","last_synced_at":"2026-02-25T18:42:05.289Z","repository":{"id":333298536,"uuid":"1132741163","full_name":"solana-foundation/solana-dev-skill","owner":"solana-foundation","description":"Claude Code skill for modern Solana development (Jan 2026 best practices)","archived":false,"fork":false,"pushed_at":"2026-02-06T15:31:59.000Z","size":62,"stargazers_count":295,"open_issues_count":7,"forks_count":57,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-12T13:45:41.232Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solana-foundation.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-12T11:41:33.000Z","updated_at":"2026-02-12T08:47:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/solana-foundation/solana-dev-skill","commit_stats":null,"previous_names":["guibibeau/solana-dev-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/solana-foundation/solana-dev-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solana-foundation%2Fsolana-dev-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solana-foundation%2Fsolana-dev-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solana-foundation%2Fsolana-dev-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solana-foundation%2Fsolana-dev-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solana-foundation","download_url":"https://codeload.github.com/solana-foundation/solana-dev-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solana-foundation%2Fsolana-dev-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29834661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T17:57:15.019Z","status":"ssl_error","status_checked_at":"2026-02-25T17:56:11.472Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-01T08:00:30.280Z","updated_at":"2026-02-25T18:42:05.272Z","avatar_url":"https://github.com/solana-foundation.png","language":"Shell","funding_links":[],"categories":["🧠 Agent Skills","AI Coding Skills","Blockchain Operations"],"sub_categories":["General"],"readme":"# Solana Development Skill for Claude Code\n\nA comprehensive Claude Code skill for modern Solana development (January 2026 best practices).\n\n## Overview\n\nThis skill provides Claude Code with deep knowledge of the current Solana development ecosystem:\n\n- **UI**: Solana Foundation framework-kit (`@solana/client` + `@solana/react-hooks`)\n- **SDK**: `@solana/kit` (v5.x) for new client work\n- **Legacy Interop**: `@solana/web3-compat` for bridging to web3.js dependencies\n- **Programs**: Anchor (default), Pinocchio for high-performance needs\n- **Testing**: LiteSVM/Mollusk for unit tests, Surfpool for integration\n- **Codegen**: Codama-first IDL and client generation\n- **Security**: Comprehensive vulnerability patterns and prevention\n\n## Installation\n\n### Quick Install\n\n```bash\nnpx skills add https://github.com/solana-foundation/solana-dev-skill\n```\n\n### Manual Install\n\n```bash\ngit clone https://github.com/solana-foundation/solana-dev-skill\ncd solana-dev-skill\n./install.sh\n```\n\n## Skill Structure\n\n```\nskill/\n├── SKILL.md                    # Main skill definition (required)\n├── frontend-framework-kit.md   # UI patterns with framework-kit\n├── kit-web3-interop.md         # Kit ↔ web3.js boundary patterns\n├── programs-anchor.md          # Anchor program development\n├── programs-pinocchio.md       # Pinocchio (high-performance native)\n├── testing.md                  # Testing (LiteSVM/Mollusk/Surfpool)\n├── idl-codegen.md              # IDL and client generation\n├── payments.md                 # Payments with Commerce Kit\n├── security.md                 # Security vulnerabilities \u0026 prevention\n└── resources.md                # Curated reference links\n```\n\n## Usage\n\nOnce installed, Claude Code will automatically use this skill when you ask about:\n\n- Solana dApp UI work (React / Next.js)\n- Wallet connection and signing flows\n- Transaction building, sending, and confirmation UX\n- On-chain program development (Anchor or Pinocchio)\n- Client SDK generation (typed program clients)\n- Local testing (LiteSVM, Mollusk, Surfpool)\n- Security hardening and audit-style reviews\n\n### Example Prompts\n\n```\n\"Help me set up a Next.js app with Solana wallet connection\"\n\"Create an Anchor program for a simple escrow\"\n\"Convert this Anchor program to Pinocchio for better CU efficiency\"\n\"How do I integrate a legacy web3.js library with my Kit-based app?\"\n\"Write LiteSVM tests for my token transfer instruction\"\n\"Review this program for security issues\"\n```\n\n## Stack Decisions\n\nThis skill encodes opinionated best practices:\n\n| Layer | Default Choice | Alternative |\n|-------|---------------|-------------|\n| UI Framework | framework-kit | ConnectorKit (headless) |\n| Client SDK | @solana/kit | @solana/web3-compat (boundary) |\n| Program Framework | Anchor | Pinocchio (performance) |\n| Unit Testing | LiteSVM / Mollusk | - |\n| Integration Testing | Surfpool | solana-test-validator |\n| Client Generation | Codama | Kinobi (Umi) |\n\n## Content Sources\n\nThis skill incorporates best practices from:\n\n- [Blueshift Learning Platform](https://learn.blueshift.gg/) - Comprehensive Solana courses\n- [Solana Official Documentation](https://solana.com/docs)\n- [Anza/Pinocchio](https://github.com/anza-xyz/pinocchio) - Zero-dependency program development\n- [LiteSVM](https://github.com/LiteSVM/litesvm) - Lightweight testing\n- [Surfpool](https://docs.surfpool.dev/) - Integration testing with mainnet state\n\n## Progressive Disclosure\n\nThe skill uses Claude Code's progressive disclosure pattern. The main `SKILL.md` provides core guidance, and Claude reads the specialized markdown files only when needed for specific tasks.\n\n## Contributing\n\nContributions are welcome! Please ensure any updates reflect current Solana ecosystem best practices.\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolana-foundation%2Fsolana-dev-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolana-foundation%2Fsolana-dev-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolana-foundation%2Fsolana-dev-skill/lists"}