tokio-troubleshooting

Installation
SKILL.md

Tokio Troubleshooting

This skill provides techniques for debugging and troubleshooting async applications built with Tokio.

Using tokio-console for Runtime Inspection

Monitor async runtime in real-time:

// In Cargo.toml
[dependencies]
console-subscriber = "0.2"

// In main.rs
fn main() {
    console_subscriber::init();
Related skills
Installs
40
GitHub Stars
8
First Seen
Jan 24, 2026