Awesome Claude Code
Awesome Claude Code from dykyi-roman/awesome-claude-code.
Skills in this plugin
283- ▌ Create Correlation Context · dykyi-roman bundleGenerates Correlation ID propagation components for PHP 8.4. Creates PSR-15 middleware, Monolog processor, message bus header propagation, and CorrelationContext value object. Includes unit tests.
- ▌ Create Docker Env Template · dykyi-romanGenerates Docker environment templates for PHP projects. Creates .env.docker files with service configurations and documentation.
- ▌ Create Docker Nginx Config · dykyi-roman bundleGenerates Nginx configuration for PHP-FPM Docker containers. Creates optimized reverse proxy configs with gzip, security headers, and caching.
- ▌ Create Idempotency Handler · dykyi-roman bundleGenerates Idempotency Handler for PHP 8.4. Creates PSR-15 middleware with Redis-backed deduplication, IdempotencyKey value object, and storage interface. Includes unit tests.
- ▌ Create Idempotent Consumer · dykyi-roman bundleGenerates Idempotent Consumer components for PHP 8.4. Creates message deduplication infrastructure with idempotency key management, storage backends, middleware, and unit tests.
- ▌ Detect Docker Antipatterns · dykyi-romanDetects Docker antipatterns in PHP projects. Identifies layer ordering issues, cache invalidation, bloated images, and configuration smells.
- ▌ Documentation QA Knowledge · dykyi-roman bundleDocumentation QA knowledge base. Provides quality checklists, audit criteria, and metrics for documentation review.
- ▌ Optimize Docker Build Time · dykyi-romanOptimizes Docker build time for PHP projects. Analyzes layer caching, BuildKit features, parallel builds, and dependency installation.
- ▌ Optimize Docker Image Size · dykyi-romanOptimizes Docker image size for PHP projects. Reduces image footprint through Alpine, multi-stage builds, layer cleanup, and dependency minimization.
- ▌ Psr Coding Style Knowledge · dykyi-roman bundlePSR-1 and PSR-12 coding standards knowledge base for PHP 8.4 projects. Provides quick reference for basic coding standard and extended coding style with detection patterns, examples, and antipattern identification. Use for code style audits and compliance reviews.
- ▌ Analyze Docker Build Errors · dykyi-romanAnalyzes Docker build errors for PHP projects. Identifies extension compilation failures, dependency issues, memory limits, and provides fixes.
- ▌ Check Aggregate Consistency · dykyi-romanAudits DDD aggregate design rules. Checks single transaction boundary, identity by root, invariant enforcement, small aggregates, and consistency boundaries.
- ▌ Check Context Communication · dykyi-romanAudits Bounded Context communication patterns. Checks Context Map relationships (Shared Kernel, ACL, Open Host), event vs direct calls, and anti-corruption layer usage.
- ▌ Check Docker Compose Config · dykyi-romanChecks Docker Compose configuration for PHP stacks. Detects missing health checks, improper dependencies, hardcoded values, and networking issues.
- ▌ Check Scalability Readiness · dykyi-romanAnalyzes PHP code for scalability issues. Detects file-based sessions, in-memory state, hardcoded hostnames, filesystem-dependent state, and missing stateless design patterns.
- ▌ Check Singleton Antipattern · dykyi-romanDetects Singleton anti-pattern in PHP code. Identifies global state via static instances, hidden dependencies, tight coupling, and testability issues.
- ▌ Detect Architecture Pattern · dykyi-romanDetects architectural patterns (MVC, DDD, Hexagonal, CQRS, Layered, Event Sourcing, Microservice) from namespace structure, interface placement, and dependency direction. Outputs confidence score per pattern.
- ▌ Docker Multistage Knowledge · dykyi-romanDocker multi-stage build knowledge base. Provides patterns for PHP dependency, extension builder, and production stages with cache optimization.
- ▌ Docker Networking Knowledge · dykyi-romanDocker networking knowledge base. Provides network configuration patterns, DNS resolution, port mapping, and multi-service communication for PHP.
- ▌ Docker Production Knowledge · dykyi-roman bundleDocker production knowledge base for PHP. Provides deployment patterns, health checks, graceful shutdown, logging, and monitoring.
- ▌ Caching Strategies Knowledge · dykyi-roman bundleCaching Strategies knowledge base. Provides caching patterns (Cache-Aside, Read-Through, Write-Through, Write-Behind), invalidation approaches, multi-level caching, and Redis data structures for caching audits and generation.
- ▌ Check Observability Coverage · dykyi-romanAnalyzes PHP code for observability gaps. Detects missing structured logging, absent correlation IDs, missing health endpoints, unstructured log calls, and missing OpenTelemetry setup.
- ▌ Create Anti Corruption Layer · dykyi-roman bundleGenerates DDD Anti-Corruption Layer for PHP 8.4. Creates translation layer between bounded contexts or external systems. Includes adapters, translators, facades, and unit tests.
- ▌ Create Dockerfile Production · dykyi-roman bundleGenerates production-ready Dockerfiles for PHP 8.4 projects. Creates multi-stage builds with composer deps, extensions builder, and optimized production stages.
- ▌ Docker Base Images Knowledge · dykyi-roman bundleDocker base images knowledge base for PHP. Provides image selection guidelines, Alpine vs Debian comparison, and version pinning strategies.
- ▌ Stability Patterns Knowledge · dykyi-roman bundleStability Patterns knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Circuit Breaker, Retry, Rate Limiter, Bulkhead, and resilience audits.
- ▌ Analyze Docker Runtime Errors · dykyi-romanAnalyzes Docker runtime errors for PHP containers. Identifies 502 Bad Gateway, OOM kills, connection refused, and permission issues.
- ▌ Check Docker Layer Efficiency · dykyi-romanChecks Docker layer efficiency for PHP builds. Analyzes layer ordering, cache utilization, and identifies optimization opportunities.
- ▌ Check Docker User Permissions · dykyi-romanChecks Docker user and permission configuration. Detects root execution, improper file ownership, and missing security constraints.
- ▌ Create Message Broker Adapter · dykyi-roman bundleGenerates Message Broker Adapter components for PHP 8.4. Creates unified broker interface with RabbitMQ, Kafka, SQS adapters, message serialization, and unit tests.
- ▌ Create Psr14 Event Dispatcher · dykyi-roman bundleGenerates PSR-14 Event Dispatcher implementation for PHP 8.4. Creates EventDispatcherInterface, ListenerProviderInterface, and StoppableEventInterface with event propagation. Includes unit tests.
- ▌ Consistency Patterns Knowledge · dykyi-roman bundleConsistency Patterns knowledge base. Provides strong vs eventual consistency, idempotency keys, optimistic/pessimistic locking, conflict resolution, and saga compensation patterns for distributed systems audits.
- ▌ Create Chain Of Responsibility · dykyi-roman bundleGenerates Chain of Responsibility pattern for PHP 8.4. Creates handler chains for request processing with middleware-style composition. Includes unit tests.
- ▌ Docker Orchestration Knowledge · dykyi-romanDocker orchestration knowledge base. Provides patterns for Swarm, Kubernetes basics, service scaling, and load balancing for PHP.
- ▌ Replication Sharding Knowledge · dykyi-roman bundleReplication and Sharding knowledge base. Provides read/write splitting at application level, connection wrapper patterns, replica lag handling, and query routing for database scaling audits.
- ▌ Create Docker Supervisor Config · dykyi-romanGenerates Supervisor configuration for Docker PHP containers. Creates process management configs for workers, schedulers, and multi-process setups.
- ▌ Docker PHP Extensions Knowledge · dykyi-roman bundleDocker PHP extensions knowledge base. Provides installation patterns for common extensions, build dependency management, and PECL usage.
- ▌ Check Dependency Vulnerabilities · dykyi-romanAnalyzes PHP dependencies for security vulnerabilities. Detects outdated packages, known CVEs, unsupported versions, vulnerable transitive dependencies.
- ▌ Create Docker Compose Production · dykyi-romanGenerates Docker Compose production configurations for PHP projects. Creates hardened stacks with resource limits, restart policies, and monitoring.
- ▌ Docker Troubleshooting Knowledge · dykyi-roman bundleDocker troubleshooting knowledge base. Provides debugging patterns, common error solutions, and diagnostic commands for PHP containers.
- ▌ Suggest Testability Improvements · dykyi-romanSuggests testability improvements for PHP code. Provides DI refactoring suggestions, mock opportunities, interface extraction, testing strategy recommendations.
- ▌ Check Docker Production Readiness · dykyi-romanChecks Docker production readiness for PHP applications. Verifies health checks, graceful shutdown, logging, monitoring, and resource limits.
- ▌ Optimize Docker Compose Resources · dykyi-romanOptimizes Docker Compose resource allocation for PHP stacks. Configures memory limits, CPU constraints, and service scaling.