patterns▌
191 indexed skills · max 10 per page
csharp-concurrency-patterns
aaronontheweb/dotnet-skills · Productivity
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() ,
efcore-patterns
aaronontheweb/dotnet-skills · Productivity
$22
compose-multiplatform-patterns
affaan-m/everything-claude-code · Productivity
Patterns for building shared UI across Android, iOS, Desktop, and Web using Compose Multiplatform and Jetpack Compose. Covers state management, navigation, theming, and performance.
mapbox-mcp-devkit-patterns
mapbox/mapbox-agent-skills · Productivity
This skill provides patterns for integrating the Mapbox MCP DevKit Server into AI coding workflows to accelerate Mapbox application development.
swiftui-patterns
affaan-m/everything-claude-code · Frontend
$22
async-python-patterns
wshobson/agents · Backend
Comprehensive guide to asyncio, concurrent patterns, and async/await for building high-performance, non-blocking Python applications. \n \n Covers core concepts (event loops, coroutines, tasks, futures) and 10+ fundamental and advanced patterns including concurrent execution, error handling, timeouts, context managers, and producer-consumer workflows \n Includes real-world examples for web scraping with aiohttp, async database operations, and WebSocket servers \n Provides performance best practi
error-handling-patterns
wshobson/agents · Productivity
Comprehensive error handling patterns across Python, TypeScript, Rust, and Go with language-specific implementations. \n \n Covers error philosophies (exceptions vs Result types), error categories (recoverable vs unrecoverable), and language-specific patterns including custom exception hierarchies, Result types, and async error handling \n Includes three universal patterns: circuit breaker for preventing cascading failures, error aggregation for collecting multiple errors, and graceful degradati
bash-defensive-patterns
sickn33/antigravity-awesome-skills · Productivity
Comprehensive guidance for writing production-ready Bash scripts using defensive programming techniques, error handling, and safety best practices to prevent common pitfalls and ensure reliability.
postgres-patterns
affaan-m/everything-claude-code · Productivity
PostgreSQL best practices for indexing, schema design, query optimization, and security. \n \n Covers six index types with specific use cases: B-tree for equality/range queries, composite for multi-column filters, GIN for JSONB and full-text search, and BRIN for time-series data \n Includes data type guidance (bigint for IDs, text over varchar, timestamptz for timestamps, numeric for money) and anti-pattern detection queries for unindexed foreign keys and slow queries \n Provides ready-to-use SQ
on-call-handoff-patterns
wshobson/agents · Productivity
Structured patterns and templates for seamless on-call shift handoffs with full context transfer. \n \n Provides shift handoff document template covering active incidents, ongoing investigations, recent changes, known issues, and upcoming events \n Includes recommended 30-minute overlap timing with split responsibilities for outgoing and incoming engineers \n Offers quick async handoff template for rapid transitions and mid-incident handoff template for continuity during active incidents \n Feat