Rust async programming helps you write fast and efficient code. This skill teaches you how to use Tokio, async traits, and error handling. You will learn to build concurrent systems and debug async code.
The core ideas are easy to grasp. A Future is a lazy computation that finishes later. An async fn returns a Future. The await keyword pauses until the future completes. A Task runs futures at the same time. A Runtime is the executor that polls futures.
Best practices include using tokio::select! for racing futures and channels instead of shared state. Avoid blocking operations and holding locks across awaits. This skill gives you the patterns you need for production async Rust.
Global
mkdir -p ~/.claude/skills/rust-async-patternsProject
mkdir -p .claude/skills/rust-async-patternsSource Repository
Typescript Advanced Typeswshobson/agents
Master advanced TypeScript types for safer and more flexible code
Python Executorqu-skills/skills
Execute Python code safely with 100+ libraries for data, scraping, and media
Golang Error Handlingsamber/cc-skills-golang
Learn to create, wrap, inspect, and log Go errors like a professional engineer
Golang Performancesamber/cc-skills-golang
Speed up your Go code using proven patterns for allocation reduction and CPU efficiency
Golang Design Patternssamber/cc-skills-golang
Idiomatic Go patterns for clean constructors error handling and graceful shutdown
Golang Concurrencysamber/cc-skills-golang
Write safe Go concurrency with goroutines, channels, and sync primitives
Golang Data Structuressamber/cc-skills-golang
Optimize Go data structures for speed and memory efficiency with internals knowledge
Golang Contextsamber/cc-skills-golang
Master Go context for cancellations, timeouts, and request values