patterns▌
190 indexed skills · max 10 per page
python-patterns
sickn33/antigravity-awesome-skills · Backend
Framework selection, async patterns, type hints, and project structure decisions for Python development. \n \n Covers framework selection (FastAPI, Django, Flask) with decision trees based on project type, async requirements, and team context \n Teaches async vs sync decision-making for I/O-bound and CPU-bound workloads, with library recommendations for common async operations \n Includes type hint strategy, Pydantic validation patterns, and project structure templates from simple scripts to lar
mapbox-style-patterns
mapbox/mapbox-agent-skills · Productivity
Battle-tested Mapbox style patterns and layer configurations for six common mapping scenarios. \n \n Includes ready-to-use JSON layer configurations for restaurant finders, real estate, data visualization, navigation, dark mode, and delivery/logistics maps \n Provides decision tree for selecting the right pattern based on content type, environment, user action, and platform \n Covers performance optimization techniques including zoom-based filtering, data-driven styling, and clustering for dense
rust-patterns
affaan-m/everything-claude-code · Backend
Idiomatic Rust patterns and best practices for building safe, performant, and maintainable applications.
laravel-patterns
affaan-m/everything-claude-code · Productivity
Production-grade Laravel architecture patterns for scalable, maintainable applications.
react-ui-patterns
sickn33/antigravity-awesome-skills · Frontend
Modern React UI patterns for loading states, error handling, and data fetching. \n \n Covers five core principles: never show stale UI, always surface errors, use optimistic updates, progressive disclosure, and graceful degradation \n Provides decision trees and component patterns for loading indicators, skeleton screens, error states, empty states, and button submission handling \n Includes critical anti-patterns to avoid, such as showing spinners when cached data exists, silently swallowing er
kotlin-exposed-patterns
affaan-m/everything-claude-code · Productivity
Comprehensive patterns for database access with JetBrains Exposed ORM, including DSL queries, DAO, transactions, and production-ready configuration.
airflow-dag-patterns
sickn33/antigravity-awesome-skills · AI/ML
Production-ready patterns for Apache Airflow including DAG design, operators, sensors, testing, and deployment strategies.
perl-patterns
affaan-m/everything-claude-code · Productivity
Idiomatic Perl 5.36+ patterns and best practices for building robust, maintainable applications.
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