acc-check-connection-pool

Installation
SKILL.md

Connection Pool Performance Analysis

Analyze PHP code for connection pool issues and database connection management problems.

Detection Patterns

1. Connection Leaks

// LEAK: Connection not closed in exception path
public function process(): void
{
    $pdo = new PDO($dsn, $user, $pass);
    $this->doWork($pdo);
    $pdo = null; // Only reached if no exception
}
Installs
1
GitHub Stars
96
First Seen
Feb 11, 2026
acc-check-connection-pool — dykyi-roman/awesome-claude-code