tag

concurrency

23 indexed skills · max 10 per page

skills (23)

golang-concurrency

samber/cc-skills-golang · Backend

0

Persona: You are a Go concurrency engineer. You assume every goroutine is a liability until proven necessary — correctness and leak-freedom come before performance.

go-concurrency

cxuu/golang-skills · Backend

0

Normative: When you spawn goroutines, make it clear when or whether they exit.

csharp-concurrency-patterns

aaronontheweb/dotnet-skills · Productivity

0

Navigate .NET concurrency from async/await through Channels to Akka.NET based on your specific problem. \n \n Start with async/await for I/O-bound work; escalate only when you hit a concrete limitation that simpler tools can't address cleanly \n Use Parallel.ForEachAsync for CPU-bound parallelism, Channel<T> for producer/consumer decoupling with backpressure, and Reactive Extensions for UI event composition \n Akka.NET Actors handle stateful entity management, state machines with Become() ,

swift-concurrency

dpearson2699/swift-ios-skills · Productivity

0

Resolve Swift 6.2 concurrency errors and adopt data-race-safe async patterns. \n \n Diagnose and fix actor isolation, Sendable conformance, and strict concurrency compiler diagnostics with a structured triage workflow \n Apply SE-0466 default MainActor isolation, SE-0461 nonisolated(nonsending), @concurrent functions, and Task.immediate for minimal behavior changes \n Design actor-based architectures, structured concurrency with TaskGroup and async let, and proper task cancellation patterns \n M

flutter-concurrency

flutter/skills · Productivity

0

Background JSON parsing and state management for jank-free Flutter UI rendering. \n \n Provides decision tree for choosing between manual serialization ( dart:convert ) and code generation ( json_serializable ) based on model complexity \n Supports three concurrency strategies: main-thread async/await for small payloads, short-lived Isolate.run() for heavy one-off computations, and long-lived isolates with ReceivePort / SendPort for continuous two-way communication \n Includes platform-aware fal

swift-concurrency-6-2

affaan-m/everything-claude-code · Productivity

0

Single-threaded by default with explicit background offloading via @concurrent and isolated protocol conformances. \n \n Async functions stay on the calling actor by default, eliminating implicit background offloading that caused data-race errors in Swift 6.1 and earlier \n Isolated conformances allow MainActor types to safely conform to non-isolated protocols without unsafe workarounds \n @concurrent attribute explicitly offloads CPU-intensive work to background threads; requires nonisolated ty

swift-concurrency

avdlee/swift-concurrency-agent-skill · Productivity

0

Diagnose data races, migrate to async/await, and resolve Swift 6 concurrency issues with structured guidance. \n \n Analyzes project settings (language mode, strict concurrency level, default isolation) before proposing fixes to ensure recommendations match your build configuration \n Covers all major concurrency diagnostics: main actor isolation, actor conformance, Sendable violations, and SwiftLint warnings with smallest-safe-fix strategies \n Provides Quick Fix Mode for localized, single-file

ln-628-concurrency-auditor

levnikolaevich/claude-code-skills · Productivity

0

ln-628-concurrency-auditor

m07-concurrency

actionbook/rust-skills · Productivity

0

Layer 1: Language Mechanics

axiom-swift-concurrency

charleswiltgen/axiom · Productivity

0

Purpose: Progressive journey from single-threaded to concurrent Swift code Swift Version: Swift 6.3 (strict concurrency by default). @concurrent requires Swift 6.2+. iOS Version: iOS 17+ (iOS 26+ for @concurrent) Xcode: Xcode 16+ (Xcode 26+ for @concurrent)

prevpage 2 / 3next