solana-bot-sdk-orchestratorlisted
Install: claude install-skill 0xfnzero/solana-bot-dev-skills
# Solana Bot SDK Orchestrator
Use this as the first skill when a user asks in Chinese or English for a Solana bot, sniper, copy trader, monitor, wallet automation, multi-DEX stream, or SDK integration involving more than one FNZero SDK.
## SDK Roles
- `solana-streamer`: preferred bot-facing event stream facade. Use it for gRPC, ShredStream, dynamic subscriptions, event callbacks, account monitoring, and RPC transaction replay when the user is building an app rather than modifying parser internals.
- `sol-parser-sdk`: parser core. Use it directly when the user needs the lowest-level parser API, parse hot path control, specific `EventTypeFilter` behavior, or SDK contribution work.
- `sol-trade-sdk`: transaction builder and sender. Use it for DEX buys/sells, SWQoS/MEV routing, durable nonce, gas fee strategy, address lookup tables, middleware, and shared trading infrastructure.
- `sol-safekey`: wallet and key management. Use it for encrypted keystores, bot wallet unlock, interactive wallet setup, SOL/SPL/WSOL operations, and avoiding plaintext private keys.
## Language Selection
Prefer the user's repo language. If unclear:
- Rust: best for lowest latency and full SDK feature surface.
- Node.js/TypeScript: best for web dashboards, operational tooling, and JS bot stacks.
- Python: best for research workflows, scripting, and async monitoring.
- Go: best for simple concurrent services.
Known multi-language SDK families:
- `sol-parser-sdk`: Rust crate `sol-parser-sdk`; Node p