acc-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() {}
}