Analyzes pull request diffs and detects style issues in each commit. Does not apply to auto-generated migration files or vendored dependencies. Use before merging to catch regressions early in your pipeline config.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Analyzes pull request diffs and detects style issues in each commit. Does not apply to auto-generated migration files or vendored dependencies. Use before merging to catch regressions early in your pipeline config.
triggers
["pull request opened","commit pushed"]
Mindset
Apply this skill when reviewing code changes for style conformance. ALWAYS run before merge. NEVER skip for hotfixes.
When to Use
A pull request is opened or updated
A commit is pushed to a feature branch
A config change requires style validation
When NOT to Use
Auto-generated files (migrations, vendor/)
Does not apply to binary file changes
Skip when the commit is a revert with no logic changes
Procedures
Identify the diff scope from the PR or commit
Run the style linter against changed files
Report violations with line numbers and fix suggestions
Block merge if critical violations are found
Anti-Patterns
BAD: Skipping style checks for "small" commits
# BAD — even small commits can introduce style debt
git push --no-verify
GOOD: Always run checks on every commit regardless of size.