dykyi-roman

dykyi-roman

@dykyi-roman

GitHub
53 Skills
4157 Total Stars
February 2026 Joined

Public Skills

check-12-factor-compliance

by dykyi-roman

Analyzes PHP code for 12-Factor App compliance. Detects hardcoded configuration, file-based state, env-specific conditionals, non-streaming logs, and missing environment variable usage.

Caching 79 3mo ago

check-database-scaling

by dykyi-roman

Analyzes PHP code for database scaling issues. Detects single DB connection for all queries, missing read replica configuration, SELECT queries hitting master, and missing connection pooling.

Analytics 79 3mo ago

api-design-knowledge

by dykyi-roman

API Design knowledge base. Provides REST constraints, Richardson Maturity Model, HTTP semantics, content negotiation, and GraphQL/gRPC comparison for API audits and generation.

API Dev 79 3mo ago

check-docker-production-readiness

by dykyi-roman

Checks Docker production readiness for PHP applications. Verifies health checks, graceful shutdown, logging, monitoring, and resource limits.

Code Review 79 3mo ago

check-connection-pool

by dykyi-roman

Analyzes PHP code for connection pool issues. Detects connection leaks, improper pool sizing, missing connection release, timeout issues.

Code Gen 79 3mo ago

check-bounded-contexts

by dykyi-roman

Analyzes bounded context boundaries in DDD projects. Detects cross-context coupling, shared kernel violations, context mapping issues, and ubiquitous language inconsistencies. Generates context map diagrams and boundary recommendations.

CLI Tools 79 3mo ago

check-doc-examples

by dykyi-roman

Verifies code examples in documentation. Checks that class names, method signatures, namespaces, and imports match actual codebase. Detects outdated and misleading examples.

Code Gen 79 3mo ago

check-docker-healthcheck

by dykyi-roman

Checks Docker health check configuration for PHP services. Verifies PHP-FPM, Nginx, and dependent service health checks.

Code Review 79 3mo ago

adr-knowledge

by dykyi-roman

Action-Domain-Responder pattern knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for ADR (web-specific MVC alternative) audits.

API Dev 79 3mo ago

analyze-docker-build-errors

by dykyi-roman

Analyzes Docker build errors for PHP projects. Identifies extension compilation failures, dependency issues, memory limits, and provides fixes.

Debugging 79 3mo ago

bug-regression-preventer

by dykyi-roman

Regression prevention checklist for bug fixes. Ensures API compatibility, behavior preservation, and no unintended side effects.

Processing 79 3mo ago

analyze-docker-image-size

by dykyi-roman

Analyzes Docker image size for PHP projects. Identifies bloated layers, unnecessary packages, and provides size reduction strategies.

Caching 79 3mo ago

analyze-docker-runtime-errors

by dykyi-roman

Analyzes Docker runtime errors for PHP containers. Identifies 502 Bad Gateway, OOM kills, connection refused, and permission issues.

Debugging 79 3mo ago

check-async-patterns

by dykyi-roman

Detects synchronous operations that should be async. Identifies blocking email sends, in-request API calls, heavy processing in request cycle, and missing queue offloading.

Code Gen 79 3mo ago

analyze-solid-violations

by dykyi-roman

Analyzes PHP codebase for SOLID principle violations. Detects God classes (SRP), type switches (OCP), broken contracts (LSP), fat interfaces (ISP), and concrete dependencies (DIP). Generates actionable reports with severity levels and remediation recommendations.

CLI Tools 79 3mo ago

check-command-injection

by dykyi-roman

Analyzes PHP code for command injection vulnerabilities. Detects shell_exec, exec, system, passthru with user input, missing escapeshellarg/escapeshellcmd.

CLI Tools 79 3mo ago

analyze-test-coverage

by dykyi-roman

Analyzes PHP codebase for test coverage gaps. Detects untested classes, methods, branches, exception paths, and edge cases. Provides actionable recommendations.

Code Gen 79 3mo ago

check-dependency-vulnerabilities

by dykyi-roman

Analyzes PHP dependencies for security vulnerabilities. Detects outdated packages, known CVEs, unsupported versions, vulnerable transitive dependencies.

Code Review 79 3mo ago

check-deserialization

by dykyi-roman

Analyzes PHP code for insecure deserialization. Detects unserialize with user input, missing allowed_classes, PHP object injection risks, gadget chains.

Code Gen 79 3mo ago

bug-fix-knowledge

by dykyi-roman

Bug fix knowledge base. Provides bug categories, symptoms, fix patterns, and minimal intervention principles for PHP 8.4 projects.

Code Gen 79 3mo ago

bug-impact-analyzer

by dykyi-roman

Analyzes bug fix blast radius. Determines affected code, dependencies, callers/callees, and potential side effects of changes.

API Dev 79 3mo ago

changelog-template

by dykyi-roman

Generates CHANGELOG.md files following Keep a Changelog format. Creates version history documentation.

Debugging 79 3mo ago

check-aggregate-consistency

by dykyi-roman

Audits DDD aggregate design rules. Checks single transaction boundary, identity by root, invariant enforcement, small aggregates, and consistency boundaries.

CLI Tools 79 3mo ago

access-control-knowledge

by dykyi-roman

Access Control knowledge base. Provides ACL, RBAC, ABAC, ReBAC models, multi-tenancy patterns, and PHP implementations (Symfony Voters, Laravel Gates) for security audits and generation.

Auth 78 3mo ago

caching-strategies-knowledge

by dykyi-roman

Caching 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.

Caching 78 3mo ago

check-distributed-locks

by dykyi-roman

Analyzes PHP code for distributed lock issues. Detects missing TTL on locks, lock without try/finally, unsafe Redis SETNX patterns, missing lock release, and deadlock risks.

Caching 78 3mo ago

check-access-control-model

by dykyi-roman

Analyzes PHP code for access control issues. Detects inline role checks, hardcoded permissions, mixed ACL/RBAC models, missing Voter/Policy pattern, and authorization logic in controllers.

Auth 78 3mo ago

check-docker-layer-efficiency

by dykyi-roman

Checks Docker layer efficiency for PHP builds. Analyzes layer ordering, cache utilization, and identifies optimization opportunities.

Caching 78 3mo ago

check-cascading-failures

by dykyi-roman

Detects cascading failure risks in PHP systems. Identifies shared resources, unbounded queues, missing backpressure, thread pool exhaustion, and failure propagation paths.

Code Review 78 3mo ago

check-consistency

by dykyi-roman

Analyzes PHP code for consistency issues. Detects mixed coding styles, inconsistent patterns, API inconsistencies, naming convention violations.

API Dev 78 3mo ago

check-code-style

by dykyi-roman

Analyzes PHP code for style issues. Checks PSR-12 compliance, formatting consistency, whitespace usage, line length.

File Ops 78 3mo ago

check-authentication

by dykyi-roman

Analyzes PHP code for authentication issues. Detects weak password handling, insecure sessions, missing auth checks, token vulnerabilities.

Auth 78 3mo ago

analyze-ci-logs

by dykyi-roman

Analyzes CI/CD pipeline logs to identify failure causes. Parses error messages, detects common failure patterns, and provides fix recommendations.

CI/CD 78 3mo ago

analyze-coupling-cohesion

by dykyi-roman

Analyzes coupling and cohesion metrics in PHP codebases. Calculates Afferent/Efferent coupling (Ca/Ce), LCOM metrics, instability index, and abstractness. Identifies highly coupled modules and low cohesion classes.

CLI Tools 78 3mo ago

adr-template

by dykyi-roman

Generates Architecture Decision Records (ADR) for PHP projects. Creates structured decision documentation with context, decision, and consequences.

Processing 78 3mo ago

check-abstract-factory

by dykyi-roman

Audits Abstract Factory pattern implementations. Checks family consistency, product hierarchy, factory method completeness, and cross-family compatibility.

Code Gen 78 3mo ago

api-doc-template

by dykyi-roman

Generates API documentation for PHP projects. Creates endpoint documentation with parameters, responses, and examples.

API Dev 78 3mo ago

analyze-ci-config

by dykyi-roman

Analyzes existing CI/CD configurations. Detects issues in GitHub Actions and GitLab CI files, checks for best practices, caching efficiency, and security concerns.

Caching 78 3mo ago

analyze-php-logs

by dykyi-roman

Parses and analyzes PHP application logs in PSR-3/Monolog, Laravel, Symfony, and plain error_log formats. Extracts exceptions, stack traces, request context, error frequency, and correlates related errors.

Debugging 78 3mo ago

architecture-doc-template

by dykyi-roman

Generates ARCHITECTURE.md files for PHP projects. Creates layer documentation, component descriptions, and architectural diagrams.

API Dev 78 3mo ago

check-batch-processing

by dykyi-roman

Analyzes PHP code for batch processing issues. Detects single-item vs bulk operations, missing batch inserts, individual API calls in loops, transaction overhead.

API Dev 78 3mo ago

check-caching-strategy

by dykyi-roman

Analyzes PHP code for caching opportunities and issues. Detects missing cache, cache invalidation problems, over-caching, repeated expensive operations.

Caching 78 3mo ago

check-class-length

by dykyi-roman

Analyzes PHP code for class length issues. Detects classes exceeding 300 lines, God class indicators, cohesion issues, SRP violations.

Code Review 78 3mo ago

check-authorization

by dykyi-roman

Analyzes PHP code for authorization issues. Detects missing access control, IDOR vulnerabilities, privilege escalation, role-based access gaps.

Auth 78 3mo ago

check-comments

by dykyi-roman

Analyzes PHP code for comment quality issues. Detects missing PHPDoc, outdated comments, commented-out code, opportunities for self-documenting code.

Comments 78 3mo ago

check-context-communication

by dykyi-roman

Audits Bounded Context communication patterns. Checks Context Map relationships (Shared Kernel, ACL, Open Host), event vs direct calls, and anti-corruption layer usage.

CLI Tools 78 3mo ago

bug-root-cause-finder

by dykyi-roman

Root cause analysis methods for PHP bugs. Provides 5 Whys technique, fault tree analysis, git bisect guidance, and stack trace parsing.

Debugging 78 3mo ago

check-csrf-protection

by dykyi-roman

Analyzes PHP code for CSRF vulnerabilities. Detects missing CSRF tokens, state-changing GET requests, token validation gaps.

Auth 78 3mo ago

check-cors-security

by dykyi-roman

Audits CORS configuration security. Detects wildcard origins, credentials with wildcards, dynamic origin reflection, missing preflight handling, and overly permissive policies.

Code Review 78 3mo ago

check-crypto-usage

by dykyi-roman

Analyzes PHP code for cryptography issues. Detects weak algorithms, hardcoded keys, insecure random, poor key management, deprecated functions.

Code Review 78 3mo ago

check-cqrs-alignment

by dykyi-roman

Audits CQRS and Event Sourcing alignment. Checks command/query separation, projection idempotency, event store consistency, and read/write model synchronization.

CLI Tools 78 3mo ago

check-dependency-injection

by dykyi-roman

Analyzes PHP code for dependency injection issues. Detects constructor injection usage, interface dependencies, service locator antipattern, new keyword in business logic.

Code Gen 78 3mo ago

check-doc-links

by dykyi-roman

Validates documentation links. Detects broken relative links, missing anchor targets, malformed URLs, and orphaned documentation files.

API Dev 78 3mo ago