check-consistency

Installation
SKILL.md

Consistency Check

Analyze PHP code for consistency across the codebase.

Detection Patterns

1. Mixed Coding Styles

// INCONSISTENT: Different styles in same file/project
class UserService
{
    // camelCase method
    public function getUser() {}

    // snake_case method (inconsistent)
    public function get_orders() {}
}
Related skills
Installs
5
GitHub Stars
71
First Seen
Mar 17, 2026