From systems-programming
Teaches production async Rust patterns using Tokio: tasks, channels, streams, error handling, and performance optimization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/systems-programming:rust-async-patternsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling.
Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling.
Future (lazy) → poll() → Ready(value) | Pending
↑ ↓
Waker ← Runtime schedules
| Concept | Purpose |
|---|---|
Future | Lazy computation that may complete later |
async fn | Function returning impl Future |
await | Suspend until future completes |
Task | Spawned future running concurrently |
Runtime | Executor that polls futures |
# Cargo.toml
[dependencies]
tokio = { version = "1", features = ["full"] }
futures = "0.3"
async-trait = "0.1"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
use tokio::time::{sleep, Duration};
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Initialize tracing
tracing_subscriber::fmt::init();
// Async operations
let result = fetch_data("https://api.example.com").await?;
println!("Got: {}", result);
Ok(())
}
async fn fetch_data(url: &str) -> Result<String> {
// Simulated async operation
sleep(Duration::from_millis(100)).await;
Ok(format!("Data from {}", url))
}
Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.
tokio::select! - For racing futuresJoinSet - For managing multiple tasksCancellationTokenstd::thread::sleep in async? or lognpx claudepluginhub wshobson/agents --plugin systems-programmingProvides production patterns for async Rust with Tokio: tasks, channels, streams, error handling. Use for building concurrent apps, network services, or debugging async code.
Provides patterns for async Rust with tokio runtime, async/await, futures, task spawning, select/join, and reqwest for concurrent HTTP requests.
Guides async and concurrent Rust programming: tokio runtime, async functions, threads, channels (mpsc), and shared state with Arc/Mutex.