async-patterns
Installation
SKILL.md
Async Pattern Fixes
Fixes for async/await misuse patterns. Correct async patterns improve code clarity and performance.
Quick Start
- Identify the async issue type (unnecessary async, sequential awaits, await non-promise)
- Understand the data dependencies
- Apply the appropriate pattern
- Verify correctness with tests
Priority Matrix
| Issue | Priority | Impact |
|---|---|---|
| require-await | P2 | Code smell, minor overhead |
| Sequential async (should be parallel) | P2 | Performance |
| await-thenable | P1 | Logic error indicator |