patterns▌
191 indexed skills · max 10 per page
frontend-patterns
affaan-m/everything-claude-code · Frontend
React and Next.js patterns for component composition, state management, performance optimization, and accessible UI. \n \n Covers component patterns including composition, compound components, and render props for flexible, reusable UI architecture \n Provides custom hooks for state management, async data fetching, debouncing, and form handling with validation \n Includes performance techniques: memoization, code splitting with lazy loading, and virtualization for large lists \n Demonstrates err
sql-optimization-patterns
wshobson/agents · Productivity
Master SQL query optimization, indexing strategies, and EXPLAIN analysis to eliminate slow queries. \n \n Covers EXPLAIN plan analysis with key metrics (Seq Scan, Index Scan, cost, rows, execution time) and five index types (B-Tree, Hash, GIN, GiST, BRIN) for different query patterns \n Includes five core optimization patterns: eliminating N+1 queries, cursor-based pagination, efficient aggregation, subquery transformation, and batch operations \n Provides advanced techniques like materialized v
testing-patterns
davila7/claude-code-templates · Testing
Test-Driven Development (TDD):
nodejs-backend-patterns
wshobson/agents · Backend
Production-ready Node.js backend patterns with Express/Fastify, middleware, authentication, and database integration. \n \n Covers layered architecture (controllers, services, repositories), dependency injection, and microservices design with TypeScript \n Includes middleware patterns for authentication, validation, rate limiting, and request logging with practical examples \n Provides custom error handling, global error handlers, and async error wrappers for robust error management \n Supports
nx-workspace-patterns
wshobson/agents · Productivity
Nx monorepo configuration patterns for workspace setup, project boundaries, and build optimization. \n \n Provides architectural templates for organizing apps, libraries, and tools with five library types (feature, ui, data-access, util, shell) and scope-based dependency rules \n Includes ready-to-use configurations for nx.json, project.json, module boundary enforcement via ESLint, and custom generators to maintain consistency \n Covers build caching setup with cacheable operations, named inputs
deployment-patterns
affaan-m/everything-claude-code · Productivity
CI/CD pipelines, Docker containerization, deployment strategies, health checks, and production readiness for web applications. \n \n Covers three deployment patterns: rolling (zero-downtime gradual updates), blue-green (atomic traffic switching), and canary (percentage-based rollout with monitoring) \n Includes multi-stage Dockerfile examples for Node.js, Go, and Python with best practices for image size, non-root users, and health checks \n Provides GitHub Actions pipeline templates, environmen
n8n-workflow-patterns
czlonkowski/n8n-skills · Productivity
Proven architectural patterns for building n8n workflows across five core use cases. \n \n Covers five foundational patterns: webhook processing, HTTP API integration, database operations, AI agent workflows, and scheduled tasks, each with specific triggers, transformations, and outputs \n Includes a pattern selection guide with real-world examples, helping developers choose the right architecture for their use case \n Provides a workflow creation checklist spanning planning, implementation, val
projection-patterns
wshobson/agents · Productivity
Build read models and materialized views from event streams using projection patterns. \n \n Covers four projection types: live (real-time subscriptions), catchup (historical processing), persistent (with checkpointing), and inline (strong consistency) \n Includes five ready-to-use templates: basic projector framework, order summary projection, Elasticsearch search indexing, daily sales aggregation, and multi-table customer activity tracking \n Emphasizes idempotency, transactional consistency,
binary-analysis-patterns
wshobson/agents · Productivity
Assembly instruction patterns, control flow analysis, and decompilation techniques for understanding compiled binaries. \n \n Covers x86-64, ARM64, and ARM32 calling conventions with detailed instruction patterns for function prologues, epilogues, and parameter passing across System V and Microsoft x64 ABIs \n Includes control flow patterns for conditionals, loops, and switch statements, plus data structure recognition for arrays, structs, and linked lists \n Provides common code patterns for st
python-anti-patterns
wshobson/agents · Backend
Common Python anti-patterns to catch during code review and debugging. \n \n Covers 14+ anti-patterns across infrastructure, architecture, error handling, resources, type safety, and testing with before/after code examples \n Includes a quick review checklist and summary table for fast reference during code reviews \n Focuses on practical fixes: centralized retry logic, DTOs, repository pattern, specific exception handling, and async-native libraries \n Emphasizes validation at API boundaries, c