patterns▌
190 indexed skills · max 10 per page
testing-patterns
davila7/claude-code-templates · Testing
Test-Driven Development (TDD):
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
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
ui-component-patterns
supercent-io/skills-template · Frontend
Modern React component patterns for building scalable, maintainable UI libraries. \n \n Covers five core patterns: props API design with TypeScript, composition, render props, custom hooks for logic separation, and performance optimization with React.memo and useMemo \n Includes compound components, polymorphic components, and context-based state sharing for flexible, reusable architectures \n Enforces single responsibility, accessibility standards (aria-*, role, tabindex), and prohibits prop dr
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
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
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,
workflow-patterns
wshobson/agents · Productivity
$22