Analyzes your codebase for naming problems and suggests better alternatives based on language conventions and context. It catches the usual suspects like vague variables (data, temp, info), misleading function names that don't match their behavior, and inconsistent boolean prefixes. The output is a prioritized report showing what's critical (misleading names with side effects) versus minor (convention inconsistencies). Useful during code review or when cleaning up legacy code where naming has drifted. The convention reference covers JavaScript, Python, Java, and Go idioms, which is helpful if you're switching between languages or onboarding new developers who haven't internalized your project's patterns yet.
npx skills add https://github.com/davila7/claude-code-templates --skill naming-analyzer