check-database-scaling
Installation
SKILL.md
Database Scaling Check
Analyze PHP code for database access patterns that prevent horizontal scaling, overload the primary database, and miss read replica offloading opportunities.
Detection Patterns
1. Single DB Connection for All Queries
<?php
declare(strict_types=1);
// BAD: All queries use the same connection
final readonly class DatabaseConnection
{
private PDO $pdo;