check-caching-strategy

Installation
SKILL.md

Caching Strategy Analysis

Analyze PHP code for caching opportunities and issues.

Detection Patterns

1. Missing Cache Opportunities

// CACHEABLE: Repeated expensive computation
public function getExchangeRate(string $currency): float
{
    return $this->api->fetchRate($currency); // API call each time
}
Installs
6
GitHub Stars
79
First Seen
Mar 17, 2026
check-caching-strategy — dykyi-roman/awesome-claude-code