async-programming-skill
Installation
SKILL.md
Async Programming
Purpose
Async/await enables non-blocking concurrent operations. This skill documents patterns for safe async code.
When to Use
Use this skill when:
- Working with I/O operations
- Building concurrent systems
- Managing timeouts
- Implementing cancellation
Key Patterns
1. All I/O is Async
Never use blocking I/O: