From grimoire
Applies best practices from Google and industry style guides to review code for consistency, readability, and adherence using linters and formatters.
How this skill is triggered — by the user, by Claude, or both
Slash command
/grimoire:review-code-styleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematically review code against a defined style guide using automated linters and human judgment.
Systematically review code against a defined style guide using automated linters and human judgment.
Adopted by: Google, Airbnb, Meta, Microsoft (all publish and enforce internal style guides) Impact: Consistent style reduces code review time by up to 20% and onboarding time by 30% (Google Engineering Productivity research)
Why best: Style consistency lowers cognitive load when reading code written by others. Automated linting catches mechanical issues before human review, freeing reviewers to focus on logic and design. Google's style guides are widely adopted as authoritative baselines across the industry.
Bad: var x = getUserData() — vague name, var in modern JS.
Good: const userData = fetchUserProfile(userId) — descriptive name, correct keyword, explicit argument.
Review comment: "Per the Airbnb JS guide §13.1, prefer const over let/var when the binding is not reassigned. Please update."
npx claudepluginhub jeffreytse/grimoire --plugin grimoireIndexes pedantic-coder skills for universal code quality principles including naming precision, casing law, import discipline, declaration order, symmetry, and dead code intolerance. Use for code reviews, refactoring, or greenfield projects.
Applies language-specific style guide rules (PEP 8, Google Style, Effective Go, etc.) when writing or reviewing code to ensure consistency with best practices.
Define and enforce coding standards that reduce cognitive load, prevent bugs, and make code maintainable. Use when establishing style guides or linting rules.