·async-patterns
</>

async-patterns

yosrbennagra/3sc

Async/await patterns for the 3SC widget host. Covers Task handling, cancellation, ConfigureAwait, fire-and-forget prevention, and async command patterns in WPF.

4Installs·0Trend·@yosrbennagra

Installation

$npx skills add https://github.com/yosrbennagra/3sc --skill async-patterns

SKILL.md

Proper async/await usage is critical for UI responsiveness and application stability. This skill covers patterns specific to WPF desktop applications.

| async void | Exceptions lost, can't await | Use async Task, except event handlers | | .Result / .Wait() | Deadlock on UI thread | await all the way | | Missing try-catch in commands | Unhandled exceptions crash | Wrap async commands | | Ignoring CancellationToken | Can't cancel operations | Pass token through chain |

| Fire-and-forget without logging | Silent failures | Use FireAndForget extension | | Task.Run for I/O | Wastes thread pool | Use async I/O APIs |

Async/await patterns for the 3SC widget host. Covers Task handling, cancellation, ConfigureAwait, fire-and-forget prevention, and async command patterns in WPF. Source: yosrbennagra/3sc.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/yosrbennagra/3sc --skill async-patterns
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is async-patterns?

Async/await patterns for the 3SC widget host. Covers Task handling, cancellation, ConfigureAwait, fire-and-forget prevention, and async command patterns in WPF. Source: yosrbennagra/3sc.

How do I install async-patterns?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/yosrbennagra/3sc --skill async-patterns Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/yosrbennagra/3sc

Details

Category
</>Dev Tools
Source
skills.sh
First Seen
2026-02-01