Editor's Note
async
--- name: async description: Async programming patterns for JavaScript/TypeScript, Python, and other languages. ---
Install
npx skills add https://github.com/skeletorflet/opencode-supreme-setup --skill asyncSKILL.md
name: async description: Async programming patterns for JavaScript/TypeScript, Python, and other languages.
async
Write correct async code.
JS/TS patterns
- async/await over raw .then()
- Promise.all for parallel tasks
- Promise.allSettled for all results
- AbortController for cancellation
- Avoid promise nesting
Common issues
- Unhandled rejections
- Race conditions
- Deadlocks
- Fire-and-forget without error handling
- Sequential when parallel is possible