moai-lang-go
>
moai-lang-swift
>
async-python
Python async/await patterns with asyncio, concurrent.futures, threading, and multiprocessing. Covers async context managers, timeouts, cancellation, common pitfalls (blocking in async, missing await, event loop issues), and choosing between async/threading/multiprocessing. Use when writing async code, debugging async issues, choosing concurrency approaches, or testing async functions.
anti-conflict
Prevent file conflicts between multiple AI agents working in parallel
dispatching-parallel-agents
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
idiomatic-go
Write production-ready Go backends, CLIs, and APIs following modern best practices from top tier tech companies. Use this skill when creating or reviewing Go code for (1) backend services and APIs, (2) command-line tools, (3) code requiring proper error handling, concurrency, or testing patterns, (4) any Go development requiring adherence to established style guidelines. Includes comprehensive linting configuration and detailed style guide.
dispatching-parallel-agents
Use when facing 3+ independent failures that can be investigated without shared state or dependencies - dispatches multiple Claude agents to investigate and fix independent problems concurrently
dispatching-parallel-agents
Dispatches one subagent per independent domain to parallelize investigation/fixes. Use when you have 2+ unrelated failures (e.g., separate failing test files, subsystems, bugs) with no shared state or ordering dependencies.
go-concurrency
Go concurrency patterns - goroutines, channels, sync primitives
ios-fundamentals
Master iOS development foundations - Architecture, lifecycle, memory, concurrency
async-programming
Master Rust async/await with Tokio
rust-concurrency
Master Rust concurrency - threads, channels, and parallel iterators
swift-concurrency
Master Swift concurrency - async/await, actors, structured concurrency, Sendable, TaskGroups